Blob 1.0
Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
TreeCubicCurve Class Reference

Cubic curve primitive. More...

#include <blobtree.h>

Inheritance diagram for TreeCubicCurve:
TreeNormal TreeElement TreeNode

Public Member Functions

 TreeCubicCurve (const CubicCurve &, BlendCompact *)
 Creates either a cubic polynomial curve skeletal element. More...
 
virtual ~TreeCubicCurve ()
 Destroys a curve.
 
virtual TreeNodeCopy () const
 Creates a deep copy of curve element.
 
int Memory () const
 Compute the size of a node.
 
- Public Member Functions inherited from TreeNormal
 TreeNormal (BlendCompact *=nullptr)
 Creates a skeletal element given a blending function.
 
virtual ~TreeNormal ()
 Destroys a skeletal element.
 
virtual double R (const Vector &) const
 Computes the squared Euclidean distance to the skeleton. More...
 
virtual double Intensity (const Vector &) const
 Compute the intensity at a given point. More...
 
virtual Vector Gradient (const Vector &) const
 Compute the gradient at a given point. More...
 
virtual void IntensityGradient (const Vector &, double &, Vector &) const
 Compute the field value and the gradient of the field function at a given point in space. More...
 
virtual double K (const Segment &) const
 Compute the Lipschitz constant on a segment. More...
 
virtual double K (const RayStep &) const
 Compute the Lipschitz constant on a segment. More...
 
virtual double K (const Sphere &) const
 Compute the Lipschitz constant inside a sphere. More...
 
- Public Member Functions inherited from TreeElement
 TreeElement (BlendCompact *=nullptr)
 Creates a new element given a blending function.
 
virtual ~TreeElement ()
 Destroys an element. More...
 
double K () const
 Returns the Lipschitz constant of the element. More...
 
double K (const Box &) const
 Returns a local Lipschitz constant within a box domain. More...
 
double K (const Ray &) const
 Returns a local Lipschitz constant along a ray. More...
 
TreeNodeCut (const Box &) const
 Cuts the node to simplify its structure inside a box. More...
 
- Public Member Functions inherited from TreeNode
 TreeNode ()
 Create a virtual node of the Blob-Tree structure.
 
virtual ~TreeNode ()
 Destroys a node.
 
virtual TreeNodeBlend (TreeNode *)
 Insert a blending node that blends the old and the new sub-tree together. More...
 
virtual TreeNodeUnion (TreeNode *)
 Insert a union node that unions the old and the new sub-tree together. More...
 
virtual TreeNodeDifference (TreeNode *)
 Insert a difference node. More...
 
virtual TreeNodeTranslate (const Vector &)
 Insert a translation node. More...
 
virtual TreeNodeRotate (const Matrix &)
 Insert a rotation node. More...
 
virtual TreeNodeScale (const Vector &)
 Insert a scaling node. More...
 
Box GetBox () const
 Return the bounding box of the node.
 
virtual void SetThreshold (const double &)
 Set the threshold value. More...
 
virtual Color GetMaterial (const Vector &, const Vector &=Vector::Null) const
 Gets the color of a node at a point. More...
 
virtual int Nodes () const
 Compute the number of nodes of the sub-tree.
 
virtual int Depth () const
 Compute the dpeth of the sub-tree.
 
virtual Vector Dichotomy (Vector, Vector, double, double, double, const double &=1.0e-4)
 Compute the intersection between the implicit surface and a segment. More...
 

Protected Member Functions

Vector Normal (const Vector &) const
 Compute the distance vector between a point in space and the curve. More...
 

Protected Attributes

CubicCurve c
 Cubic curve.
 
Quartic xyz
 Quartic constant coefficients used to speed-up queries.
 
Vector b
 End vertices of the curve.
 
- Protected Attributes inherited from TreeNode
Box box = Box::Null
 Bounding box of the node.
 
double T = 0.5
 Threshold value.
 

Additional Inherited Members

- Static Protected Attributes inherited from TreeNode
static const double Epsilon = 1e-6
 Epsilon value for gradient computation.
 

Detailed Description

Cubic curve primitive.

The evaluation of the field function at a given point in space is computationally expensive at the computation of the distance to the skeleton requires finding the roots of a quintic.

Example of how to code a Bezier primitive:

TreeNode *vertex=new TreeCubicCurve(Cubic::Hermite(1,4,0,-1),Cubic::Hermite(0,0,2,-2),Cubic::Hermite(0,4,1,1),new BlendCubic(2.0,1.0));
Normalized blending functions (1-r2)3.
Definition: blend.h:114
static Cubic Hermite(const double &, const double &, const double &, const double &)
TreeCubicCurve(const CubicCurve &, BlendCompact *)
Creates either a cubic polynomial curve skeletal element.
Definition: treecurve.cpp:25
The generic nodes with some pure virtual functions.
Definition: blobtree.h:27

,

Constructor & Destructor Documentation

◆ TreeCubicCurve()

TreeCubicCurve::TreeCubicCurve ( const CubicCurve c,
BlendCompact blend 
)

Creates either a cubic polynomial curve skeletal element.

Parameters
cCubic curve.
blendFalloff function.

Member Function Documentation

◆ Normal()

Vector TreeCubicCurve::Normal ( const Vector p) const
protectedvirtual

Compute the distance vector between a point in space and the curve.

This function computes the projection of a point p onto the curve by minimizing the distance function along the curve, expressed as a degree five polynomial.

Parameters
pPoint.

Implements TreeNormal.