Version: 8.3.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
GEOM::GEOM_ICurvesOperations Interface Reference

Interface for curves creation. More...

import "GEOM_Gen.idl";

Inheritance diagram for GEOM::GEOM_ICurvesOperations:
Inheritance graph

Public Member Functions

GEOM_Object MakeCirclePntVecR (in GEOM_Object thePnt, in GEOM_Object theVec, in double theR)
 Create a circle with given center, normal vector and radius. More...
 
GEOM_Object MakeCircleThreePnt (in GEOM_Object thePnt1, in GEOM_Object thePnt2, in GEOM_Object thePnt3)
 Create a circle, passing through three given points. More...
 
GEOM_Object MakeCircleCenter2Pnt (in GEOM_Object thePnt1, in GEOM_Object thePnt2, in GEOM_Object thePnt3)
 Create a circle with given center, with a radius equals the distance from center to Point1 and on a plane defined by all of three points. More...
 
GEOM_Object MakeEllipse (in GEOM_Object thePnt, in GEOM_Object theVec, in double theRMajor, in double theRMinor)
 Create an ellipse with given center, normal vector and radiuses. More...
 
GEOM_Object MakeEllipseVec (in GEOM_Object thePnt, in GEOM_Object theVec, in double theRMajor, in double theRMinor, in GEOM_Object theVecMaj)
 Create an ellipse with given center, normal vector, main axis vector and radiuses. More...
 
GEOM_Object MakeArc (in GEOM_Object thePnt1, in GEOM_Object thePnt2, in GEOM_Object thePnt3)
 Create an arc of circle, passing through three given points. More...
 
GEOM_Object MakeArcCenter (in GEOM_Object theCenter, in GEOM_Object thePnt1, in GEOM_Object thePnt2, in boolean theSense)
 Create an arc of circle of center C from one point to another. More...
 
GEOM_Object MakeArcOfEllipse (in GEOM_Object theCenter, in GEOM_Object thePnt1, in GEOM_Object thePnt2)
 Create an arc of ellipse of center C and two points P1 P2. More...
 
GEOM_Object MakePolyline (in ListOfGO thePoints, in boolean theIsClosed)
 Create a polyline on the set of points. More...
 
GEOM_Object MakeSplineBezier (in ListOfGO thePoints, in boolean theIsClosed)
 Create bezier curve on the set of points. More...
 
GEOM_Object MakeSplineInterpolation (in ListOfGO thePoints, in boolean theIsClosed, in boolean theDoReordering)
 Create B-Spline curve on the set of points. More...
 
GEOM_Object MakeSplineInterpolWithTangents (in ListOfGO thePoints, in GEOM_Object theFirstVec, in GEOM_Object theLastVec)
 Create B-Spline curve on the set of points. More...
 
GEOM_Object MakeCurveParametric (in string thexExpr, in string theyExpr, in string thezExpr, in double theParamMin, in double theParamMax, in double theParamStep, in curve_type theCurveType)
 Creates a curve using the parametric definition of the basic points. More...
 
GEOM_Object MakeCurveParametricNew (in string thexExpr, in string theyExpr, in string thezExpr, in double theParamMin, in double theParamMax, in long theParamNbStep, in curve_type theCurveType)
 Creates a curve using the parametric definition of the basic points. More...
 
GEOM_Object MakeIsoline (in GEOM_Object theFace, in boolean IsUIsoline, in double theParameter)
 Creates an isoline curve on a face. More...
 
GEOM_Object MakeSketcher (in string theCommand, in ListOfDouble theWorkingPlane)
 Create a sketcher (wire or face), following the textual description, passed through theCommand argument. More...
 
GEOM_Object MakeSketcherOnPlane (in string theCommand, in GEOM_Object theWorkingPlane)
 Create a sketcher (wire or face), following the textual description, passed through theCommand argument. More...
 
GEOM_Object Make3DSketcherCommand (in string theCommand)
 Create a 3D sketcher, following the textual description, passed through theCommand argument. More...
 
GEOM_Object Make3DSketcher (in ListOfDouble theCoordinates)
 Create a 3D sketcher, made of a straight segments, joining points with coordinates passed through theCoordinates argument. More...
 
GEOM_Object MakePolyline2D (in ListOfListOfDouble theCoordsList, in string_array theNamesList, in short_array theTypesList, in ListOfBool theClosedList, in ListOfDouble theWorkingPlane)
 Create a 2D polyline (wire or a compound of wires). More...
 
GEOM_Object MakePolyline2DOnPlane (in ListOfListOfDouble theCoordsList, in string_array theNamesList, in short_array theTypesList, in ListOfBool theClosedList, in GEOM_Object theWorkingPlane)
 Create a 2D polyline (wire or a compound of wires). More...
 
- Public Member Functions inherited from GEOM::GEOM_IOperations
boolean IsDone ()
 To know, if the operation was successfully performed. More...
 
void SetErrorCode (in string theErrorID)
 Set the operation error code. More...
 
string GetErrorCode ()
 Get the operation error code. More...
 
long GetStudyID ()
 Get ID of study, where the operation is defined. More...
 
void StartOperation ()
 Opens a new transaction. More...
 
void FinishOperation ()
 Closes the previously opened trasaction. More...
 
void AbortOperation ()
 Aborts the previously opened transaction. More...
 

Detailed Description

Polyline, Circle, Spline (Bezier and Interpolation)

Member Function Documentation

GEOM_Object GEOM::GEOM_ICurvesOperations::Make3DSketcher ( in ListOfDouble  theCoordinates)

Order of coordinates has to be the following: x1, y1, z1, x2, y2, z2, ..., xN, yN, zN

Parameters
theCoordinatesList of double values.
Returns
New GEOM_Object, containing the created wire.
GEOM_Object GEOM::GEOM_ICurvesOperations::Make3DSketcherCommand ( in string  theCommand)

Format of the description string has to be the following:

"3DSketcher:CMD[:CMD[:CMD...]]"

Where CMD is one of

  • "TT x y z" : Create segment by point at X & Y or set the first point
  • "T dx dy dz" : Create segment by point with DX & DY


  • "OXY angleX angle2 length" : Create segment by two angles and length
  • "OYZ angleY angle2 length" : Create segment by two angles and length
  • "OXZ angleX angle2 length" : Create segment by two angles and length


  • "WW" : Close Wire (to finish)
Parameters
theCommandString, defining the sketcher in local coordinates of the working plane.
Returns
New GEOM_Object, containing the created wire.
GEOM_Object GEOM::GEOM_ICurvesOperations::MakeArc ( in GEOM_Object  thePnt1,
in GEOM_Object  thePnt2,
in GEOM_Object  thePnt3 
)
Parameters
thePnt1Start point of the arc.
thePnt2Middle point of the arc.
thePnt3End point of the arc.
Returns
New GEOM_Object, containing the created arc.
GEOM_Object GEOM::GEOM_ICurvesOperations::MakeArcCenter ( in GEOM_Object  theCenter,
in GEOM_Object  thePnt1,
in GEOM_Object  thePnt2,
in boolean  theSense 
)
Parameters
theCenterCenter point of the arc.
thePnt1Start point of the arc.
thePnt2End point of the arc.
theSenseOrientation of the arc
Returns
New GEOM_Object, containing the created arc.
GEOM_Object GEOM::GEOM_ICurvesOperations::MakeArcOfEllipse ( in GEOM_Object  theCenter,
in GEOM_Object  thePnt1,
in GEOM_Object  thePnt2 
)
Parameters
theCenterCenter point of the arc.
thePnt1Major radius is distance from center to Pnt1.
thePnt2define a plane and Minor radius as a shortest distance from Pnt2 to vector Center->Pnt1.
Returns
New GEOM_Object, containing the created arc.
GEOM_Object GEOM::GEOM_ICurvesOperations::MakeCircleCenter2Pnt ( in GEOM_Object  thePnt1,
in GEOM_Object  thePnt2,
in GEOM_Object  thePnt3 
)
Parameters
thePnt1,thePnt2,thePnt3Points, defining the circle.
Returns
New GEOM_Object, containing the created circle.
GEOM_Object GEOM::GEOM_ICurvesOperations::MakeCirclePntVecR ( in GEOM_Object  thePnt,
in GEOM_Object  theVec,
in double  theR 
)
Parameters
thePntCircle center.
theVecVector, normal to the plane of the circle.
theRCircle radius.
Returns
New GEOM_Object, containing the created circle.
GEOM_Object GEOM::GEOM_ICurvesOperations::MakeCircleThreePnt ( in GEOM_Object  thePnt1,
in GEOM_Object  thePnt2,
in GEOM_Object  thePnt3 
)
Parameters
thePnt1,thePnt2,thePnt3Points, defining the circle.
Returns
New GEOM_Object, containing the created circle.
GEOM_Object GEOM::GEOM_ICurvesOperations::MakeCurveParametric ( in string  thexExpr,
in string  theyExpr,
in string  thezExpr,
in double  theParamMin,
in double  theParamMax,
in double  theParamStep,
in curve_type  theCurveType 
)
Parameters
thexExprparametric equation of the coordinates X.
theyExprparametric equation of the coordinates Y.
thezExprparametric equation of the coordinates Z.
theParamMinthe minimal value of the parameter.
theParamMaxthe maximum value of the parameter.
theParamStepthe step of the parameter.
theCurveTypethe type of the curve.
Returns
New GEOM_Object, containing the created curve.
GEOM_Object GEOM::GEOM_ICurvesOperations::MakeCurveParametricNew ( in string  thexExpr,
in string  theyExpr,
in string  thezExpr,
in double  theParamMin,
in double  theParamMax,
in long  theParamNbStep,
in curve_type  theCurveType 
)
Parameters
thexExprparametric equation of the coordinates X.
theyExprparametric equation of the coordinates Y.
thezExprparametric equation of the coordinates Z.
theParamMinthe minimal value of the parameter.
theParamMaxthe maximum value of the parameter.
theParamNbStepthe number of steps of the parameter discretization.
theCurveTypethe type of the curve.
Returns
New GEOM_Object, containing the created curve.
GEOM_Object GEOM::GEOM_ICurvesOperations::MakeEllipse ( in GEOM_Object  thePnt,
in GEOM_Object  theVec,
in double  theRMajor,
in double  theRMinor 
)
Parameters
thePntEllipse center.
theVecVector, normal to the plane of the ellipse.
theRMajorMajor ellipse radius.
theRMinorMinor ellipse radius.
Returns
New GEOM_Object, containing the created ellipse.
GEOM_Object GEOM::GEOM_ICurvesOperations::MakeEllipseVec ( in GEOM_Object  thePnt,
in GEOM_Object  theVec,
in double  theRMajor,
in double  theRMinor,
in GEOM_Object  theVecMaj 
)
Parameters
thePntEllipse center.
theVecVector, normal to the plane of the ellipse.
theRMajorMajor ellipse radius.
theRMinorMinor ellipse radius.
theVecMajVector, direction of the ellipse's main axis.
Returns
New GEOM_Object, containing the created ellipse.
GEOM_Object GEOM::GEOM_ICurvesOperations::MakeIsoline ( in GEOM_Object  theFace,
in boolean  IsUIsoline,
in double  theParameter 
)
Parameters
theFacethe face for which an isoline is created.
IsUIsolineTrue for U-isoline creation; False for V-isoline creation.
theParameterthe U parameter for U-isoline or V parameter for V-isoline.
Returns
New GEOM_Object, containing the created isoline edge or a compound of edges.
GEOM_Object GEOM::GEOM_ICurvesOperations::MakePolyline ( in ListOfGO  thePoints,
in boolean  theIsClosed 
)
Parameters
thePointsSequence of points for the polyline.
theIsClosedIf TRUE, build a closed wire.
Returns
New GEOM_Object, containing the created polyline.
GEOM_Object GEOM::GEOM_ICurvesOperations::MakePolyline2D ( in ListOfListOfDouble  theCoordsList,
in string_array  theNamesList,
in short_array  theTypesList,
in ListOfBool  theClosedList,
in ListOfDouble  theWorkingPlane 
)

The polyline can have several sections. Each section represents a set of points in the form of list of coordinates of the following order: x1, y1, x2, y2, ..., xN, yN Each section has its own name, type of curve (can be either GEOM::Polyline or GEOM::Interpolation) and Closed flag. For each section a wire is created. It represents either a polyline or interpolation BSpline either closed or not depending on the Closed flag. The result represents a wire if there is only one section is defined. Otherwise a compound of wires is returned.

Parameters
theCoordsListthe list of coordinates list. theCoordsList[0] is the coordinates list of the first section. theCoordsList[1] is for the second section etc.
theNamesListthe list of names. The order corresponds to theCoordsList.
theTypesListthe list of curve types. The order corresponds to theCoordsList.
theClosedListthe list of Closed flags. The order corresponds to theCoordsList.
theWorkingPlane9 double values, defining origin, OZ and OX directions of the working plane.
Returns
New GEOM_Object, containing the created wire or a compound of wires.
GEOM_Object GEOM::GEOM_ICurvesOperations::MakePolyline2DOnPlane ( in ListOfListOfDouble  theCoordsList,
in string_array  theNamesList,
in short_array  theTypesList,
in ListOfBool  theClosedList,
in GEOM_Object  theWorkingPlane 
)

The polyline can have several sections. Each section represents a set of points in the form of list of coordinates of the following order: x1, y1, x2, y2, ..., xN, yN Each section has its own name, type of curve (can be either GEOM::Polyline or GEOM::Interpolation) and Closed flag. For each section a wire is created. It represents either a polyline or interpolation BSpline either closed or not depending on the Closed flag. The result represents a wire if there is only one section is defined. Otherwise a compound of wires is returned.

Parameters
theCoordsListthe list of coordinates list. theCoordsList[0] is the coordinates list of the first section. theCoordsList[1] is for the second section etc.
theNamesListthe list of names. The order corresponds to theCoordsList.
theTypesListthe list of curve types. The order corresponds to theCoordsList.
theClosedListthe list of Closed flags. The order corresponds to theCoordsList.
theWorkingPlaneplanar Face or LCS(Marker) of the working plane.
Returns
New GEOM_Object, containing the created wire or a compound of wires.
GEOM_Object GEOM::GEOM_ICurvesOperations::MakeSketcher ( in string  theCommand,
in ListOfDouble  theWorkingPlane 
)

Edges of the resulting wire or face will be arcs of circles and/or linear segments.
Format of the description string has to be the following:

"Sketcher[:F x1 y1]:CMD[:CMD[:CMD...]]"

Where:

  • x1, y1 are coordinates of the first sketcher point (zero by default),
  • CMD is one of
    • "R angle" : Set the direction by angle
    • "D dx dy" : Set the direction by DX & DY

    • "TT x y" : Create segment by point at X & Y
    • "T dx dy" : Create segment by point with DX & DY
    • "L length" : Create segment by direction & Length
    • "IX x" : Create segment by direction & Intersect. X
    • "IY y" : Create segment by direction & Intersect. Y

    • "C radius length" : Create arc by direction, radius and length(in degree)

    • "WW" : Close Wire (to finish)
    • "WF" : Close Wire and build face (to finish)
Parameters
theCommandString, defining the sketcher in local coordinates of the working plane.
theWorkingPlaneNine double values, defining origin, OZ and OX directions of the working plane.
Returns
New GEOM_Object, containing the created wire or face.
GEOM_Object GEOM::GEOM_ICurvesOperations::MakeSketcherOnPlane ( in string  theCommand,
in GEOM_Object  theWorkingPlane 
)

For format of the description string see the previous method.

Parameters
theCommandString, defining the sketcher in local coordinates of the working plane.
theWorkingPlanePlanar Face or LCS(Marker) of the working plane.
Returns
New GEOM_Object, containing the created wire or face.
GEOM_Object GEOM::GEOM_ICurvesOperations::MakeSplineBezier ( in ListOfGO  thePoints,
in boolean  theIsClosed 
)
Parameters
thePointsSequence of points for the bezier curve.
theIsClosedIf TRUE, build a closed curve.
Returns
New GEOM_Object, containing the created bezier curve.
GEOM_Object GEOM::GEOM_ICurvesOperations::MakeSplineInterpolation ( in ListOfGO  thePoints,
in boolean  theIsClosed,
in boolean  theDoReordering 
)
Parameters
thePointsSequence of points for the B-Spline curve.
theIsClosedIf TRUE, build a closed curve.
theDoReorderingIf TRUE, the algo does not follow the order of thePoints but searches for the closest vertex.
Returns
New GEOM_Object, containing the created B-Spline curve.
GEOM_Object GEOM::GEOM_ICurvesOperations::MakeSplineInterpolWithTangents ( in ListOfGO  thePoints,
in GEOM_Object  theFirstVec,
in GEOM_Object  theLastVec 
)
Parameters
thePointsSequence of points for the B-Spline curve.
theFirstVecVector object, defining the curve direction at its first point.
theLastVecVector object, defining the curve direction at its last point.
Returns
New GEOM_Object, containing the created B-Spline curve.

The documentation for this interface was generated from the following file: