Uses of Class
hmi.math.Bezier2f

Packages that use Bezier2f
hmi.facegraphics.deformers Mesh deformations. 
hmi.math Mathematical utility classes for dealing with vectors, quaternions, splines, matrices, filters, etcetera. 
 

Uses of Bezier2f in hmi.facegraphics.deformers
 

Fields in hmi.facegraphics.deformers declared as Bezier2f
private  Bezier2f SmoothDeformer.bez
           
 

Uses of Bezier2f in hmi.math
 

Methods in hmi.math that return Bezier2f
static Bezier2f Bezier2f.bezier2fFromPointsVectorsSingleWeights(float[][] points2f, float[][] vectors2f, float[] weights)
          Like bezier2fFromPointsVectorsWeights, except that the number of weight must be equal to the number of interpolated points.
static Bezier2f Bezier2f.bezier2fFromPointsVectorsWeights(float[][] points2f, float[][] vectors2f, float[] weights)
          Creates a ne Bezier2f object from an array of Vec2f points that are interpolated, an array of Vec2f tangent vectors, and a float array containing weights.