Interface IEllipseHollowProfile
Defines a hollow elliptical section profile from
Depth,
Width and
WallThickness.
Inherited Members
Namespace: Oasys.Profiles
Assembly: AdSec_API_IDL.dll
Syntax
public interface IEllipseHollowProfile : IProfile
Remarks
IEllipseHollowProfile inherits IProfile.
The hollow ellipse is centered at the origin of its local coordinate system.
Properties
Depth
The depth of the hollow ellipse.
Declaration
Length Depth { get; set; }
Property Value
Type | Description |
---|---|
OasysUnits.Length |
Exceptions
Type | Condition |
---|---|
System.ArgumentException | When the depth is not a positive and finite value. |
WallThickness
The wall thickness of the hollow ellipse.
Declaration
Length WallThickness { get; set; }
Property Value
Type | Description |
---|---|
OasysUnits.Length |
Exceptions
Type | Condition |
---|---|
System.ArgumentException | When the wall thickness is not a positive and finite value. |
Width
The width of the hollow ellipse.
Declaration
Length Width { get; set; }
Property Value
Type | Description |
---|---|
OasysUnits.Length |
Exceptions
Type | Condition |
---|---|
System.ArgumentException | When the width is not a positive and finite value. |
Methods
Create(Length, Length, Length)
Creates a new IEllipseHollowProfile profile from its Depth, Width and WallThickness.
Declaration
static IEllipseHollowProfile Create(Length depth, Length width, Length wallThickness)
Parameters
Type | Name | Description |
---|---|---|
OasysUnits.Length | depth | Defines the profile's depth. |
OasysUnits.Length | width | Defines the profile's width. |
OasysUnits.Length | wallThickness | Defines the profile's wall thickness. |
Returns
Type | Description |
---|---|
IEllipseHollowProfile | Hollow ellipse profile with the specified dimensions. |
Exceptions
Type | Condition |
---|---|
System.ArgumentException | When any of its dimensions is not a positive and finite value. |