Interface IPoint
A 2D vertex in the yz-plane.
Namespace: Oasys.Profiles
Assembly: AdSec_API_IDL.dll
Syntax
public interface IPoint
Properties
Y
The local Y coordinate.
Declaration
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
Length Z { get; set; }
Property Value
Type | Description |
---|---|
OasysUnits.Length |
Exceptions
Type | Condition |
---|---|
System.ArgumentException | When the value is out of range. |
Methods
Create(Length, Length)
Declaration
static IPoint Create(Length y, 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. |