HalfSpace

class HalfSpace : public feasst::Shape

A half space divides space by a plane (or line in 2D). If you are on the “right” side of this divding surface, then you are inside. Otherwise, you are not.

The current implementation is optimized such that the dividing surface is assumed perpendicular to one of the coordinate axes. For a more arbitrarily-oriented plane, see HalfSpaceTilted.

Thus, there are only three variables required to specify the half space.

  1. The dimension of the axis which is perpendicular to the dividing surface

  2. The coordinate value of the intersection of the dividing surface with this axis.

  3. The direction along this axis which is ‘inside’ the shape.

Subclassed by feasst::HalfSpaceSine

Arguments

  • dimension: Set the dimension of the axis which is perpendicular to the divider.

  • intersection: Set the value where this axis intersects the dividing surface.

  • direction: Set the direction at the intersection which is inside. The only accepted values are “1” or “-1”.