Creates a AlignmentSCS (Spiral-Curve-Spiral group) entity defined by a previous entity, a next entity, the 'A' values of two spirals, and the arc radius.
Namespace: Autodesk.Civil.DatabaseServicesAssembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.4.2516.0
Syntax
C# |
---|
public AlignmentSCS AddFreeSCS(
int previousEntityId,
int nextEntityId,
double spiral1Param,
double spiral2Param,
SpiralParamType spType,
double radius,
bool isGreaterThan180,
SpiralType spiralDefinition
) |
Visual Basic |
---|
Public Function AddFreeSCS ( _
previousEntityId As Integer, _
nextEntityId As Integer, _
spiral1Param As Double, _
spiral2Param As Double, _
spType As SpiralParamType, _
radius As Double, _
isGreaterThan180 As Boolean, _
spiralDefinition As SpiralType _
) As AlignmentSCS |
Visual C++ |
---|
public:
AlignmentSCS^ AddFreeSCS(
int previousEntityId,
int nextEntityId,
double spiral1Param,
double spiral2Param,
SpiralParamType spType,
double radius,
bool isGreaterThan180,
SpiralType spiralDefinition
) |
Parameters
- previousEntityId
- Type: System..::..Int32
Previous entity identifier.
- nextEntityId
- Type: System..::..Int32
Next entity identifier.
- spiral1Param
- Type: System..::..Double
First spiral parameter (length or A-value).
- spiral2Param
- Type: System..::..Double
Second spiral parameter (length or A-value).
- spType
- Type: Autodesk.Civil.DatabaseServices..::..SpiralParamType
Specifies the first and second spParam parameters' type.
- radius
- Type: System..::..Double
Radius of the arc entity.
- isGreaterThan180
- Type: System..::..Boolean
Specifies whether the curve encompasses more than 180 degrees (True) or less than 180 degrees (False).
- spiralDefinition
- Type: Autodesk.Civil..::..SpiralType
Definition of the spiral.
See Also