Interface IPoint
A 2D vertex in the yz-plane.
Namespace: Oasys.Profiles
Assembly: cs.temp.dll.dll
Syntax
public interface IPoint
Properties
Y
The local Y coordinate.
Declaration
OasysUnits.Length Y { get; set; }
Property Value
| Type | Description |
|---|---|
| OasysUnits.Length |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentException | When the value is out of range. |
Z
The local Z coordinate.
Declaration
OasysUnits.Length Z { get; set; }
Property Value
| Type | Description |
|---|---|
| OasysUnits.Length |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentException | When the value is out of range. |
Methods
Create(OasysUnits.Length, OasysUnits.Length)
Declaration
static IPoint Create(OasysUnits.Length y, OasysUnits.Length z)
Parameters
| Type | Name | Description |
|---|---|---|
| OasysUnits.Length | y | The local Y coordinate. |
| OasysUnits.Length | z | The local Z coordinate. |
Returns
| Type | Description |
|---|---|
| IPoint | Point with the specified local Y and Z coordinates. |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentException | When any value is out of range. |