ProfileEntityCollectionAddFreeSymmetricParabolaByThroughPoint Method |
Creates a free symmetric parabola constrained by two entities and a pass-through point.
Namespace: Autodesk.Civil.DatabaseServicesAssembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.9.0.960
Syntaxpublic ProfileParabolaSymmetric AddFreeSymmetricParabolaByThroughPoint(
uint previousEntityId,
uint nextEntityId,
Point2d passPoint
)
Public Function AddFreeSymmetricParabolaByThroughPoint (
previousEntityId As UInteger,
nextEntityId As UInteger,
passPoint As Point2d
) As ProfileParabolaSymmetric
public:
ProfileParabolaSymmetric^ AddFreeSymmetricParabolaByThroughPoint(
unsigned int previousEntityId,
unsigned int nextEntityId,
Point2d passPoint
)
Parameters
- previousEntityId UInt32
- The ID of the previous entity to attach to.
- nextEntityId UInt32
- The ID of the next entity to attach to.
- passPoint Point2d
- The pass-through point for the parabola.
Return Value
ProfileParabolaSymmetricThe newly created
ProfileParabolaSymmetric.
Exceptions| Exception | Condition |
|---|
| ArgumentException |
Thrown when either of the given entity IDs are invalid or do not exist in the collection.
|
Remarks
The X coordinate of the pass-through point represents station, and Y represents elevation.
See Also