Interface ICircleHollowProfile
Defines a hollow circular section profile from
Diameter and
WallThickness.
Inherited Members
Namespace: Oasys.Profiles
Assembly: cs.temp.dll.dll
Syntax
public interface ICircleHollowProfile : IProfile
Remarks
ICircleHollowProfile inherits IProfile.
The hollow circle is centered at the origin of its local coordinate system.
Properties
Diameter
The diameter of the hollow circle.
Declaration
OasysUnits.Length Diameter { get; set; }
Property Value
| Type | Description |
|---|---|
| OasysUnits.Length |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentException | When the diameter is not a positive and finite value. |
WallThickness
The wall thickness of the hollow circle.
Declaration
OasysUnits.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. |
Methods
Create(OasysUnits.Length, OasysUnits.Length)
Creates a new ICircleHollowProfile profile from its Diameter and WallThickness.
Declaration
static ICircleHollowProfile Create(OasysUnits.Length diameter, OasysUnits.Length wallThickness)
Parameters
| Type | Name | Description |
|---|---|---|
| OasysUnits.Length | diameter | Defines the profile's diameter. |
| OasysUnits.Length | wallThickness | Defines the profile's wall thickness. |
Returns
| Type | Description |
|---|---|
| ICircleHollowProfile | Hollow circle profile with the specified dimensions. |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentException | When any of its dimensions is not a positive and finite value. |