Envelope Wrappers
Envelope wrappers are utility methods that make it easier to create shapes and animations.
The 3 current Envelope wrapper classes are: CircleEnvelopeWrapper
, CurveEnvelopeWrapper
and LinearEnvelopeWrapper
.
Only the most commonly used ones will be explained here, but it's recommended to take a look at the classes, there's Javadoc for all of them.
LinearEnvelopeWrapper#linearEnvelopeGroup
Envelope wrapper that creates a straight line between 2 points/offsets in 3D space.
Will create a line from (-4, -4, -4) to (4, 4, 4)
CurveEnvelopeWrapper#curveEnvelopeGroup
Envelope wrapper that creates a curve between 2 points/offsets in 3D space.
CircleEnvelopeWrapper#circleEnvelopeGroup
Envelope wrapper that creates a circle around a point in the XZ plane.
There are individual method wrappers in those classes, as well as other envelope group wrappers. I recommend to take a look at the classes to find what you need.
Last updated