|
| TreeNoise (const double &, TreeNode *) |
| Create a noise operator.
|
|
virtual | ~TreeNoise () |
| Recursively destroys a noise node.
|
|
double | Intensity (const Vector &) const |
| Compute the field value at a given point in space.
|
|
virtual TreeNode * | Copy () const |
| Create a deep copy of the node.
|
|
int | Memory () const |
| Compute the size of a node.
|
|
double | K () const |
| Compute the gradient Lipschitz constant of the sub-tree.
|
|
double | K (const Box &) const |
| Compute the local Lipschitz constant in a box.
|
|
double | K (const Ray &) const |
| Computes the Lipschitz constant along a ray.
|
|
Color | GetMaterial (const Vector &, const Vector &=Vector::Null) const |
| Compute the color of the node.
|
|
TreeNode * | Cut (const Box &) const |
| Cut the sub-tree to simplify its structure inside a box.
|
|
| TreeUnary (TreeNode *) |
| Create a generic warping node.
|
|
virtual | ~TreeUnary () |
| Recursively destroys the structure.
|
|
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 void | SetThreshold (const double &) |
| Recursively setup the threshold value.
|
|
| TreeOperator () |
| Creates an operator node.
|
|
virtual | ~TreeOperator () |
| Destroys an operator.
|
|
| TreeNode () |
| Create a virtual node of the Blob-Tree structure.
|
|
virtual | ~TreeNode () |
| Destroys a node.
|
|
virtual double | Omega (const Vector &) const |
| Return the squared distance to the compact support of the node.
|
|
virtual void | IntensityGradient (const Vector &, double &, Vector &) const |
| Computes the field value and the gradient at a given point in space.
|
|
virtual Vector | Gradient (const Vector &) const |
| Computes the gradient of the field function at a given point in space.
|
|
virtual TreeNode * | Blend (TreeNode *) |
| Insert a blending node that blends the old and the new sub-tree together.
|
|
virtual TreeNode * | Union (TreeNode *) |
| Insert a union node that unions the old and the new sub-tree together.
|
|
virtual TreeNode * | Difference (TreeNode *) |
| Insert a difference node.
|
|
virtual TreeNode * | Translate (const Vector &) |
| Insert a translation node.
|
|
virtual TreeNode * | Rotate (const Matrix &) |
| Insert a rotation node.
|
|
virtual TreeNode * | Scale (const Vector &) |
| Insert a scaling node.
|
|
virtual double | K (const Segment &) const |
| Compute the Lipschitz constant along a segment.
|
|
virtual double | K (const RayStep &) const |
| Compute the Lipschitz constant along an optimized ray-stepping segment.
|
|
virtual double | K (const Sphere &) const |
| Compute the Lipschitz constant in a sphere.
|
|
Box | GetBox () const |
| Return the bounding box of the node.
|
|
virtual QString | Show (int=0) const |
| Show the tree hierarchy.
|
|
virtual Vector | Dichotomy (Vector, Vector, double, double, double, const double &=1.0e-4) |
| Compute the intersection between the implicit surface and a segment.
|
|
Noise operator.
A warping node that smoothly deforms space using a noise function. ,