|
| RayStep (const Vector &, const Vector &) |
| Create a ray stepping structure.
|
|
| RayStep (const Ray &, const double &, const double &) |
| Create a ray stepping structure.
|
|
Vector | Vertex (int) const |
| Return one of the end vertex of the axis.
|
|
Vector | VertexAt (const double &) const |
| Compute a point on the segment.
|
|
Segment | GetSegment () const |
| Get the segment.
|
|
Sphere | GetSphere () const |
| Return the embedding sphere.
|
|
Vector | Center () const |
| Get the center.
|
|
double | Radius () const |
| Return the segment radius.
|
|
double | GetLength () const |
| Return the length of the segment.
|
|
Vector | GetAxis () const |
| Return the unit vector.
|
|
Box | GetBox () const |
| Return the bounding box.
|
|
| ~RayStep () |
| Empty.
|
|
void | Step (const double &, const double &) |
| Compute the next step forward.
|
|
RayStep | Translated (const Vector &) const |
| Translates a segment.
|
|
RayStep | Scaled (const Vector &) const |
| Scales a segment.
|
|
RayStep | Rotated (const Matrix &) const |
| Rotates a segment.
|
|
bool | Intersect (const Box &) const |
| Compute the intersection between the segment and a box.
|
|
RayStep | InverseTransformed (const Frame &) const |
| Inverse transformation.
|
|
|
| Segment () |
| Empty.
|
|
| Segment (const Vector &, const Vector &) |
| Creates a segment given its end vertices.
|
|
| ~Segment () |
| Empty.
|
|
void | Rotate (const Matrix &) |
| Rotates a segment.
|
|
void | Translate (const Vector &) |
| Translates a segment.
|
|
void | Scale (const double &) |
| Uniformly scales a segment.
|
|
Segment | Translated (const Vector &) const |
| Translates a segment.
|
|
Segment | Scaled (const Vector &) const |
| Scales a segment.
|
|
Segment | Scaled (const double &) const |
| Uniformly scales a segment.
|
|
Segment | Rotated (const Matrix &) const |
| Rotates a segment.
|
|
Segment | InverseTransformed (const Frame &) const |
| Inverse transformation.
|
|
Quadric | Equation (const Ray &) const |
| Computes the polynomial equation of the Euclidean distance between a ray and the line corresponding to the segment.
|
|
Vector | Vertex (int) const |
| Return one of the end vertex of the axis.
|
|
Vector & | Vertex (int) |
| Return one of the end vertex of the axis.
|
|
Vector | VertexAt (const double &) const |
| Compute a point on the segment.
|
|
Vector | Center () const |
| Compute the center of the segment.
|
|
bool | Intersect (const Box &) const |
| Check if a segment intersects a box.
|
|
Vector | GetAxis () const |
| Returns the normalized axis vector.
|
|
Box | GetBox () const |
| Compute the bounding box of the segment.
|
|
double | Length () const |
| Return axis length.
|
|
double | R (const Vector &) const |
| Compute the squared distance to the segment.
|
|
double | R (const Vector &, double &) const |
| Compute the squared distance to the segment.
|
|
double | R (const Segment &) const |
| Compute the squared distance between two segments.
|
|
Vector | Normal (const Vector &) const |
| Compute the normal vector between a point and its projection onto the segment.
|
|
bool | Equal (const Segment &, const double &) const |
| Test if two segments are almost equal.
|
|
static Quadric | EdgeEquation (const Ray &, const Vector &, const Vector &, const Vector &) |
| Compute the polynomial equation of the distance function along the ray.
|
|
static Vector | Intersect (const Vector &, const Vector &, const double, const double, double=0.0) |
| Compute the intersection between the line f(x)=y and a line such that f(a)=va and f(b)=vb, on the segment ab.
|
|
Core class for stepping along a ray.
The class stores the end points of the line segment, its length and unit direction.
void RayStep::Step |
( |
const double & | s, |
|
|
const double & | l ) |
Compute the next step forward.
Start form the first vertex of the segment, step in the same direction by a given distance, with a new stepping distance.
Avoids the re-computation of the unit direction vector, and testing segment vertexes for computing the bounding box.
- Parameters
-
s | Stepping distance. |
l | Next segment length. |