![]() |
IPSDK
4_1_0_2
IPSDK : Image Processing Software Development Kit
|
3d plan associated to spherical coordinates More...
#include <Plan3d.h>
Public Member Functions | |
| eCoordinateSystem3dType | getCoordinateSystem3dType () const |
| method allowing to retrieve coordinate system 3d type | |
| eEntity3dType | getEntity3dType () const |
| method allowing to retrieve entity 3d type | |
| Vector3d | getNormal () const |
| retrieve normal vector associated to plan | |
| Point3dData< ipReal64 > | getNearestPointFromOrigin () const |
| retrieve nearest point from origin | |
Constructors and destructor | |
| Plan3d () | |
| Plan3d (const ipReal64 rho, const ipReal64 theta, const ipReal64 phi) | |
| template<typename T > | |
| Plan3d (const Point3dData< T > &pt0, const Point3dData< T > &pt1, const Point3dData< T > &pt2) | |
| template<typename T > | |
| Plan3d (const Point3d< T > &pt0, const Point3d< T > &pt1, const Point3d< T > &pt2) | |
| ~Plan3d () | |
| template<typename T > | |
| Plan3d (const Point3dData< T > &pt, const Vector3d &normal) | |
| template<typename T > | |
| Plan3d (const Point3d< T > &pt, const Vector3d &normal) | |
| void | setCoords (const ipReal64 rho, const ipReal64 theta, const ipReal64 phi) |
| access to plan coordinates | |
| template<typename T > | |
| void | setCoords (const Point3dData< T > &pt0, const Point3dData< T > &pt1, const Point3dData< T > &pt2) |
| access to plan coordinates | |
| template<typename T > | |
| void | setCoords (const Point3d< T > &pt0, const Point3d< T > &pt1, const Point3d< T > &pt2) |
| access to plan coordinates | |
| template<typename T > | |
| void | setCoords (const Point3dData< T > &pt, const Vector3d &normal) |
| access to plan coordinates | |
| template<typename T > | |
| void | setCoords (const Point3d< T > &pt, const Vector3d &normal) |
| access to plan coordinates | |
| void | setRho (const ipReal64 rho) |
| access to plan coordinates | |
| void | setTheta (const ipReal64 theta) |
| access to plan coordinates | |
| void | setPhi (const ipReal64 phi) |
| access to plan coordinates | |
| ipReal64 | getRho () const |
| access to plan coordinates | |
| ipReal64 | getTheta () const |
| access to plan coordinates | |
| ipReal64 | getPhi () const |
| access to plan coordinates | |
| template<typename T > | |
| ipReal64 | distance (const Point3d< T > &pt) const |
| retrieve orthogonal distance between point and plan | |
| template<typename T > | |
| ipReal64 | distance (const Point3dData< T > &pt) const |
| retrieve orthogonal distance between point and plan | |
| template<typename T > | |
| ipReal64 | signedDistance (const Point3d< T > &pt) const |
| retrieve signed orthogonal distance between point and plan (positive value stands for points located on the half space defined by normal direction) | |
| template<typename T > | |
| ipReal64 | signedDistance (const Point3dData< T > &pt) const |
| retrieve signed orthogonal distance between point and plan (positive value stands for points located on the half space defined by normal direction) | |
| ipReal64 | getCosTheta () const |
| access to computation intermediate | |
| ipReal64 | getSinTheta () const |
| access to computation intermediate | |
| ipReal64 | getCosPhi () const |
| access to computation intermediate | |
| ipReal64 | getSinPhi () const |
| access to computation intermediate | |
| Plan3d & | operator+= (const Vector3d &vec) |
| translation operators on plan | |
| Plan3d | operator+ (const Vector3d &vec) const |
| translation operators on plan | |
| Plan3d & | operator-= (const Vector3d &vec) |
| translation operators on plan | |
| Plan3d | operator- (const Vector3d &vec) const |
| translation operators on plan | |
Public Member Functions inherited from ipsdk::geom::BaseTypedGeometryEntity3d< ipReal64 > | |
| BaseTypedGeometryEntity3d () | |
| virtual | ~BaseTypedGeometryEntity3d ()=0 |
Public Member Functions inherited from ipsdk::geom::BaseGeometryEntity3d | |
| eCoordinateDimension | getCoordinateDimension () const |
| method allowing to retrieve entity underlying coordinates dimension | |
| BaseGeometryEntity3d () | |
| virtual | ~BaseGeometryEntity3d ()=0 |
Public Member Functions inherited from ipsdk::geom::BaseGeometryEntity | |
| BaseGeometryEntity () | |
| virtual | ~BaseGeometryEntity ()=0 |
Public Member Functions inherited from ipsdk::BaseObjectWithSkeleton | |
| const eSklSrzMode & | getSerializationMode () const |
| retrieve serialization flag for object More... | |
| void | setSerializationMode (const eSklSrzMode &sklSrzMode) const |
| set serialization flag for object | |
| BaseObjectWithSkeleton () | |
| ~BaseObjectWithSkeleton () | |
Public Member Functions inherited from ipsdk::BaseSerializationObject | |
| BaseSerializationObject () | |
| Default constructor. | |
| virtual | ~BaseSerializationObject ()=0 |
| destructor | |
Public Member Functions inherited from ipsdk::BaseDynamicObject | |
| virtual const std::string & | getClassName () const |
| method allowing to retrieve object class name | |
| virtual BaseDynamicObject * | createNew () const =0 |
| method allowing to create new instance of current object type | |
| virtual DynamicObjectPtr | createShared () const =0 |
| method allowing to create new shared instance of current object type | |
| virtual bool | hasCopySupport () const =0 |
| check whether objet has copy support | |
| virtual BaseDynamicObject * | duplicate () const =0 |
| method allowing to duplicate current object More... | |
| virtual DynamicObjectPtr | duplicateShared () const =0 |
| method allowing shared duplication of current object More... | |
| BaseDynamicObject () | |
| virtual | ~BaseDynamicObject ()=0 |
Static Public Attributes | |
| static const eCoordinateSystem3dType::domain | g_coordinateSystem3dType = eCoordinateSystem3dType::eCS3DT_Spherical |
| coordinate system associated to entity | |
| static const eEntity3dType::domain | g_entity3dType = eEntity3dType::eE3DT_Plan |
| type associated to entity | |
Static Public Attributes inherited from ipsdk::geom::BaseGeometryEntity3d | |
| static const eCoordinateDimension::domain | g_coordinateDimension = eCoordinateDimension::eCD_3d |
| entity underlying coordinates dimension | |
Protected Attributes | |
| ipReal64 | _rho |
| rho coordinate of point | |
| ipReal64 | _theta |
| theta coordinate of point | |
| ipReal64 | _phi |
| phi coordinate of point | |
| ipReal64 | _cosTheta |
| computation intermediate | |
| ipReal64 | _sinTheta |
| computation intermediate | |
| ipReal64 | _cosPhi |
| computation intermediate | |
| ipReal64 | _sinPhi |
| computation intermediate | |
Protected Attributes inherited from ipsdk::BaseObjectWithSkeleton | |
| eSklSrzMode | _sklSrzMode |
| serialization flag for object More... | |
Additional Inherited Members | |
Public Types inherited from ipsdk::geom::BaseTypedGeometryEntity3d< ipReal64 > | |
| typedef ipReal64 | DataType |
| data type associated to coordinates | |
Static Public Member Functions inherited from ipsdk::BaseSerializationObject | |
| static ipUInt32 | getVersion () |
| method allowing to retrieve class version information for serialization | |
Static Public Member Functions inherited from ipsdk::BaseDynamicObject | |
| static const std::string & | getTypeName () |
| method allowing to retrieve name associated to class | |
Protected Member Functions inherited from ipsdk::BaseSerializationObject | |
| virtual BoolResult | write (BaseOArchive &ar) const |
| method allowing to ensure serialization write part for object | |
| virtual BoolResult | read (BaseIArchive &ar) |
| method allowing to ensure serialization read part for object | |
Protected Member Functions inherited from ipsdk::BaseDynamicObject | |
| virtual void | initCtorCopy (const BaseDynamicObject &object) |
| virtual void | copy (const BaseDynamicObject &object) |
| method allowing to copy data from another object | |
3d plan associated to spherical coordinates
Plans 3d can be represented using spherical coordinates.
where :
is the orthogonal direction to plan.
is the distance from plan to originFor more informations report to Plans 3d representation
1.8.14