Point Cloud Library (PCL)  1.7.0
Public Member Functions | Public Attributes
ON_Circle Class Reference

#include <pcl/surface/3rdparty/opennurbs/opennurbs_circle.h>

+ Inheritance diagram for ON_Circle:

List of all members.

Public Member Functions

 ON_Circle ()
 ON_Circle (const ON_Plane &plane, double radius)
 ON_Circle (const ON_3dPoint &center, double radius)
 ON_Circle (const ON_Plane &plane, const ON_3dPoint &center, double radius)
 ON_Circle (const ON_2dPoint &P, const ON_2dPoint &Q, const ON_2dPoint &R)
 ON_Circle (const ON_3dPoint &P, const ON_3dPoint &Q, const ON_3dPoint &R)
 ~ON_Circle ()
bool Create (const ON_Plane &plane, double radius)
bool Create (const ON_3dPoint &center, double radius)
bool Create (const ON_Plane &plane, const ON_3dPoint &center, double radius)
bool Create (const ON_2dPoint &P, const ON_2dPoint &Q, const ON_2dPoint &R)
bool Create (const ON_3dPoint &P, const ON_3dPoint &Q, const ON_3dPoint &R)
bool Create (const ON_2dPoint &P, const ON_2dVector &tangent_at_P, const ON_2dPoint &Q)
bool Create (const ON_3dPoint &P, const ON_3dVector &tangent_at_P, const ON_3dPoint &Q)
bool IsValid () const
bool IsInPlane (const ON_Plane &, double=ON_ZERO_TOLERANCE) const
double Radius () const
double Diameter () const
double Circumference () const
const ON_3dPointCenter () const
const ON_3dVectorNormal () const
const ON_PlanePlane () const
ON_BoundingBox BoundingBox () const
bool GetTightBoundingBox (ON_BoundingBox &tight_bbox, int bGrowBox=false, const ON_Xform *xform=0) const
bool Transform (const ON_Xform &)
ON_3dPoint PointAt (double) const
ON_3dVector DerivativeAt (int, double) const
ON_3dVector TangentAt (double) const
bool ClosestPointTo (const ON_3dPoint &point, double *t) const
ON_3dPoint ClosestPointTo (const ON_3dPoint &point) const
double EquationAt (const ON_2dPoint &plane_point) const
ON_2dVector GradientAt (const ON_2dPoint &plane_point) const
bool Rotate (double sin_angle, double cos_angle, const ON_3dVector &axis_of_rotation)
bool Rotate (double angle_in_radians, const ON_3dVector &axis_of_rotation)
bool Rotate (double sin_angle, double cos_angle, const ON_3dVector &axis_of_rotation, const ON_3dPoint &center_of_rotation)
bool Rotate (double angle_in_radians, const ON_3dVector &axis_of_rotation, const ON_3dPoint &center_of_rotation)
bool Translate (const ON_3dVector &delta)
bool Reverse ()
int GetNurbForm (ON_NurbsCurve &nurbs_curve) const
bool GetRadianFromNurbFormParameter (double nurbs_parameter, double *circle_radians_parameter) const
bool GetNurbFormParameterFromRadian (double circle_radians_parameter, double *nurbs_parameter) const

Public Attributes

ON_Plane plane
double radius

Detailed Description

Definition at line 33 of file opennurbs_circle.h.


Constructor & Destructor Documentation

ON_Circle::ON_Circle ( const ON_Plane plane,
double  radius 
)
ON_Circle::ON_Circle ( const ON_3dPoint center,
double  radius 
)
ON_Circle::ON_Circle ( const ON_Plane plane,
const ON_3dPoint center,
double  radius 
)
ON_Circle::ON_Circle ( const ON_2dPoint P,
const ON_2dPoint Q,
const ON_2dPoint R 
)
ON_Circle::ON_Circle ( const ON_3dPoint P,
const ON_3dPoint Q,
const ON_3dPoint R 
)

Member Function Documentation

Reimplemented in ON_Arc.

const ON_3dPoint& ON_Circle::Center ( ) const
double ON_Circle::Circumference ( ) const
bool ON_Circle::ClosestPointTo ( const ON_3dPoint point,
double *  t 
) const

Reimplemented in ON_Arc.

Reimplemented in ON_Arc.

bool ON_Circle::Create ( const ON_Plane plane,
double  radius 
)
bool ON_Circle::Create ( const ON_3dPoint center,
double  radius 
)
bool ON_Circle::Create ( const ON_Plane plane,
const ON_3dPoint center,
double  radius 
)
bool ON_Circle::Create ( const ON_2dPoint P,
const ON_2dPoint Q,
const ON_2dPoint R 
)

Reimplemented in ON_Arc.

bool ON_Circle::Create ( const ON_3dPoint P,
const ON_3dPoint Q,
const ON_3dPoint R 
)

Reimplemented in ON_Arc.

bool ON_Circle::Create ( const ON_2dPoint P,
const ON_2dVector tangent_at_P,
const ON_2dPoint Q 
)

Reimplemented in ON_Arc.

bool ON_Circle::Create ( const ON_3dPoint P,
const ON_3dVector tangent_at_P,
const ON_3dPoint Q 
)

Reimplemented in ON_Arc.

ON_3dVector ON_Circle::DerivativeAt ( int  ,
double   
) const
double ON_Circle::Diameter ( ) const
double ON_Circle::EquationAt ( const ON_2dPoint plane_point) const
int ON_Circle::GetNurbForm ( ON_NurbsCurve nurbs_curve) const

Reimplemented in ON_Arc.

bool ON_Circle::GetNurbFormParameterFromRadian ( double  circle_radians_parameter,
double *  nurbs_parameter 
) const

Reimplemented in ON_Arc.

bool ON_Circle::GetRadianFromNurbFormParameter ( double  nurbs_parameter,
double *  circle_radians_parameter 
) const

Reimplemented in ON_Arc.

bool ON_Circle::GetTightBoundingBox ( ON_BoundingBox tight_bbox,
int  bGrowBox = false,
const ON_Xform xform = 0 
) const

Reimplemented in ON_Arc.

ON_2dVector ON_Circle::GradientAt ( const ON_2dPoint plane_point) const
bool ON_Circle::IsInPlane ( const ON_Plane ,
double  = ON_ZERO_TOLERANCE 
) const
bool ON_Circle::IsValid ( ) const

Reimplemented in ON_Arc.

const ON_3dVector& ON_Circle::Normal ( ) const
const ON_Plane& ON_Circle::Plane ( ) const
ON_3dPoint ON_Circle::PointAt ( double  ) const
double ON_Circle::Radius ( ) const

Reimplemented in ON_Arc.

bool ON_Circle::Rotate ( double  sin_angle,
double  cos_angle,
const ON_3dVector axis_of_rotation 
)
bool ON_Circle::Rotate ( double  angle_in_radians,
const ON_3dVector axis_of_rotation 
)
bool ON_Circle::Rotate ( double  sin_angle,
double  cos_angle,
const ON_3dVector axis_of_rotation,
const ON_3dPoint center_of_rotation 
)
bool ON_Circle::Rotate ( double  angle_in_radians,
const ON_3dVector axis_of_rotation,
const ON_3dPoint center_of_rotation 
)
ON_3dVector ON_Circle::TangentAt ( double  ) const
bool ON_Circle::Transform ( const ON_Xform )
bool ON_Circle::Translate ( const ON_3dVector delta)

Member Data Documentation

Definition at line 318 of file opennurbs_circle.h.

Definition at line 319 of file opennurbs_circle.h.


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