|  | 
|  | gp_Pnt () | 
|  | Creates a point with zero coordinates.  More... 
 | 
|  | 
|  | gp_Pnt (const gp_XYZ &theCoord) | 
|  | Creates a point from a XYZ object.  More... 
 | 
|  | 
|  | gp_Pnt (const Standard_Real theXp, const Standard_Real theYp, const Standard_Real theZp) | 
|  | Creates a point with its 3 cartesian's coordinates : theXp, theYp, theZp.  More... 
 | 
|  | 
| void | SetCoord (const Standard_Integer theIndex, const Standard_Real theXi) | 
|  | Changes the coordinate of range theIndex : theIndex = 1 => X is modified theIndex = 2 => Y is modified theIndex = 3 => Z is modified Raised if theIndex != {1, 2, 3}.  More... 
 | 
|  | 
| void | SetCoord (const Standard_Real theXp, const Standard_Real theYp, const Standard_Real theZp) | 
|  | For this point, assigns the values theXp, theYp and theZp to its three coordinates.  More... 
 | 
|  | 
| void | SetX (const Standard_Real theX) | 
|  | Assigns the given value to the X coordinate of this point.  More... 
 | 
|  | 
| void | SetY (const Standard_Real theY) | 
|  | Assigns the given value to the Y coordinate of this point.  More... 
 | 
|  | 
| void | SetZ (const Standard_Real theZ) | 
|  | Assigns the given value to the Z coordinate of this point.  More... 
 | 
|  | 
| void | SetXYZ (const gp_XYZ &theCoord) | 
|  | Assigns the three coordinates of theCoord to this point.  More... 
 | 
|  | 
| Standard_Real | Coord (const Standard_Integer theIndex) const | 
|  | Returns the coordinate of corresponding to the value of theIndex : theIndex = 1 => X is returned theIndex = 2 => Y is returned theIndex = 3 => Z is returned Raises OutOfRange if theIndex != {1, 2, 3}. Raised if theIndex != {1, 2, 3}.  More... 
 | 
|  | 
| void | Coord (Standard_Real &theXp, Standard_Real &theYp, Standard_Real &theZp) const | 
|  | For this point gives its three coordinates theXp, theYp and theZp.  More... 
 | 
|  | 
| Standard_Real | X () const | 
|  | For this point, returns its X coordinate.  More... 
 | 
|  | 
| Standard_Real | Y () const | 
|  | For this point, returns its Y coordinate.  More... 
 | 
|  | 
| Standard_Real | Z () const | 
|  | For this point, returns its Z coordinate.  More... 
 | 
|  | 
| const gp_XYZ & | XYZ () const | 
|  | For this point, returns its three coordinates as a XYZ object.  More... 
 | 
|  | 
| const gp_XYZ & | Coord () const | 
|  | For this point, returns its three coordinates as a XYZ object.  More... 
 | 
|  | 
| gp_XYZ & | ChangeCoord () | 
|  | Returns the coordinates of this point. Note: This syntax allows direct modification of the returned value.  More... 
 | 
|  | 
| void | BaryCenter (const Standard_Real theAlpha, const gp_Pnt &theP, const Standard_Real theBeta) | 
|  | Assigns the result of the following expression to this point (theAlpha*this + theBeta*theP) / (theAlpha + theBeta)  More... 
 | 
|  | 
| Standard_Boolean | IsEqual (const gp_Pnt &theOther, const Standard_Real theLinearTolerance) const | 
|  | Comparison Returns True if the distance between the two points is lower or equal to theLinearTolerance.  More... 
 | 
|  | 
| Standard_Real | Distance (const gp_Pnt &theOther) const | 
|  | Computes the distance between two points.  More... 
 | 
|  | 
| Standard_Real | SquareDistance (const gp_Pnt &theOther) const | 
|  | Computes the square distance between two points.  More... 
 | 
|  | 
| void | Mirror (const gp_Pnt &theP) | 
|  | Performs the symmetrical transformation of a point with respect to the point theP which is the center of the symmetry.  More... 
 | 
|  | 
| gp_Pnt | Mirrored (const gp_Pnt &theP) const | 
|  | Performs the symmetrical transformation of a point with respect to an axis placement which is the axis of the symmetry.  More... 
 | 
|  | 
| void | Mirror (const gp_Ax1 &theA1) | 
|  | 
| gp_Pnt | Mirrored (const gp_Ax1 &theA1) const | 
|  | Performs the symmetrical transformation of a point with respect to a plane. The axis placement theA2 locates the plane of the symmetry : (Location, XDirection, YDirection).  More... 
 | 
|  | 
| void | Mirror (const gp_Ax2 &theA2) | 
|  | 
| gp_Pnt | Mirrored (const gp_Ax2 &theA2) const | 
|  | Rotates a point. theA1 is the axis of the rotation. theAng is the angular value of the rotation in radians.  More... 
 | 
|  | 
| void | Rotate (const gp_Ax1 &theA1, const Standard_Real theAng) | 
|  | 
| gp_Pnt | Rotated (const gp_Ax1 &theA1, const Standard_Real theAng) const | 
|  | 
| void | Scale (const gp_Pnt &theP, const Standard_Real theS) | 
|  | Scales a point. theS is the scaling value.  More... 
 | 
|  | 
| gp_Pnt | Scaled (const gp_Pnt &theP, const Standard_Real theS) const | 
|  | 
| void | Transform (const gp_Trsf &theT) | 
|  | Transforms a point with the transformation T.  More... 
 | 
|  | 
| gp_Pnt | Transformed (const gp_Trsf &theT) const | 
|  | 
| void | Translate (const gp_Vec &theV) | 
|  | Translates a point in the direction of the vector theV. The magnitude of the translation is the vector's magnitude.  More... 
 | 
|  | 
| gp_Pnt | Translated (const gp_Vec &theV) const | 
|  | 
| void | Translate (const gp_Pnt &theP1, const gp_Pnt &theP2) | 
|  | Translates a point from the point theP1 to the point theP2.  More... 
 | 
|  | 
| gp_Pnt | Translated (const gp_Pnt &theP1, const gp_Pnt &theP2) const | 
|  | 
| void | DumpJson (Standard_OStream &theOStream, Standard_Integer theDepth=-1) const | 
|  | Dumps the content of me into the stream.  More... 
 | 
|  | 
| Standard_Boolean | InitFromJson (const Standard_SStream &theSStream, Standard_Integer &theStreamPos) | 
|  | Inits the content of me from the stream.  More... 
 | 
|  | 
Defines a 3D cartesian point.