jar

com.github.virtuald : curvesapi

Maven & Gradle

Aug 11, 2023
32 usages
26 stars

curvesapi · Implementation of various mathematical curves that define themselves over a set of control points. The API is written in Java. The curves supported are: Bezier, B-Spline, Cardinal Spline, Catmull-Rom Spline, Lagrange, Natural Cubic Spline, and NURBS.

Table Of Contents

Latest Version

Download com.github.virtuald : curvesapi JAR file - Latest Versions:

All Versions

Download com.github.virtuald : curvesapi JAR file - All Versions:

Version Vulnerabilities Size Updated
1.08
1.07
1.06
1.05
1.04
1.03
1.02

View Java Class Source Code in JAR file

  1. Download JD-GUI to open JAR file and explore Java source code file (.class .java)
  2. Click menu "File → Open File..." or just drag-and-drop the JAR file in the JD-GUI window curvesapi-1.08.jar file.
    Once you open a JAR file, all the java classes in the JAR file will be displayed.

com.graphbuilder.math

├─ com.graphbuilder.math.AddNode.class - [JAR]

├─ com.graphbuilder.math.DivNode.class - [JAR]

├─ com.graphbuilder.math.Expression.class - [JAR]

├─ com.graphbuilder.math.ExpressionParseException.class - [JAR]

├─ com.graphbuilder.math.ExpressionTree.class - [JAR]

├─ com.graphbuilder.math.FuncMap.class - [JAR]

├─ com.graphbuilder.math.FuncNode.class - [JAR]

├─ com.graphbuilder.math.MultNode.class - [JAR]

├─ com.graphbuilder.math.OpNode.class - [JAR]

├─ com.graphbuilder.math.PascalsTriangle.class - [JAR]

├─ com.graphbuilder.math.PowNode.class - [JAR]

├─ com.graphbuilder.math.SubNode.class - [JAR]

├─ com.graphbuilder.math.TermNode.class - [JAR]

├─ com.graphbuilder.math.ValNode.class - [JAR]

├─ com.graphbuilder.math.VarMap.class - [JAR]

├─ com.graphbuilder.math.VarNode.class - [JAR]

com.graphbuilder.math.func

├─ com.graphbuilder.math.func.AbsFunction.class - [JAR]

├─ com.graphbuilder.math.func.AcosFunction.class - [JAR]

├─ com.graphbuilder.math.func.AcoshFunction.class - [JAR]

├─ com.graphbuilder.math.func.AsinFunction.class - [JAR]

├─ com.graphbuilder.math.func.AsinhFunction.class - [JAR]

├─ com.graphbuilder.math.func.AtanFunction.class - [JAR]

├─ com.graphbuilder.math.func.AtanhFunction.class - [JAR]

├─ com.graphbuilder.math.func.AvgFunction.class - [JAR]

├─ com.graphbuilder.math.func.CeilFunction.class - [JAR]

├─ com.graphbuilder.math.func.CombinFunction.class - [JAR]

├─ com.graphbuilder.math.func.CosFunction.class - [JAR]

├─ com.graphbuilder.math.func.CoshFunction.class - [JAR]

├─ com.graphbuilder.math.func.EFunction.class - [JAR]

├─ com.graphbuilder.math.func.ExpFunction.class - [JAR]

├─ com.graphbuilder.math.func.FactFunction.class - [JAR]

├─ com.graphbuilder.math.func.FloorFunction.class - [JAR]

├─ com.graphbuilder.math.func.Function.class - [JAR]

├─ com.graphbuilder.math.func.LgFunction.class - [JAR]

├─ com.graphbuilder.math.func.LnFunction.class - [JAR]

├─ com.graphbuilder.math.func.LogFunction.class - [JAR]

├─ com.graphbuilder.math.func.MaxFunction.class - [JAR]

├─ com.graphbuilder.math.func.MinFunction.class - [JAR]

├─ com.graphbuilder.math.func.ModFunction.class - [JAR]

├─ com.graphbuilder.math.func.PiFunction.class - [JAR]

├─ com.graphbuilder.math.func.PowFunction.class - [JAR]

├─ com.graphbuilder.math.func.RandFunction.class - [JAR]

├─ com.graphbuilder.math.func.RoundFunction.class - [JAR]

├─ com.graphbuilder.math.func.SignFunction.class - [JAR]

├─ com.graphbuilder.math.func.SinFunction.class - [JAR]

├─ com.graphbuilder.math.func.SinhFunction.class - [JAR]

├─ com.graphbuilder.math.func.SqrtFunction.class - [JAR]

├─ com.graphbuilder.math.func.SumFunction.class - [JAR]

├─ com.graphbuilder.math.func.TanFunction.class - [JAR]

├─ com.graphbuilder.math.func.TanhFunction.class - [JAR]

com.graphbuilder.struc

├─ com.graphbuilder.struc.Bag.class - [JAR]

├─ com.graphbuilder.struc.LinkedList.class - [JAR]

├─ com.graphbuilder.struc.Stack.class - [JAR]

com.graphbuilder.org.apache.harmony.awt.gl

├─ com.graphbuilder.org.apache.harmony.awt.gl.Crossing.class - [JAR]

com.graphbuilder.geom

├─ com.graphbuilder.geom.Geom.class - [JAR]

├─ com.graphbuilder.geom.Point2d.class - [JAR]

├─ com.graphbuilder.geom.Point3d.class - [JAR]

├─ com.graphbuilder.geom.PointFactory.class - [JAR]

com.graphbuilder.curve

├─ com.graphbuilder.curve.BSpline.class - [JAR]

├─ com.graphbuilder.curve.BezierCurve.class - [JAR]

├─ com.graphbuilder.curve.BinaryCurveApproximationAlgorithm.class - [JAR]

├─ com.graphbuilder.curve.CardinalSpline.class - [JAR]

├─ com.graphbuilder.curve.CatmullRomSpline.class - [JAR]

├─ com.graphbuilder.curve.ControlPath.class - [JAR]

├─ com.graphbuilder.curve.ControlStringParseException.class - [JAR]

├─ com.graphbuilder.curve.CubicBSpline.class - [JAR]

├─ com.graphbuilder.curve.Curve.class - [JAR]

├─ com.graphbuilder.curve.GroupIterator.class - [JAR]

├─ com.graphbuilder.curve.LagrangeCurve.class - [JAR]

├─ com.graphbuilder.curve.MultiPath.class - [JAR]

├─ com.graphbuilder.curve.NURBSpline.class - [JAR]

├─ com.graphbuilder.curve.NaturalCubicSpline.class - [JAR]

├─ com.graphbuilder.curve.ParametricCurve.class - [JAR]

├─ com.graphbuilder.curve.Point.class - [JAR]

├─ com.graphbuilder.curve.Polyline.class - [JAR]

├─ com.graphbuilder.curve.ShapeMultiPath.class - [JAR]

├─ com.graphbuilder.curve.ShapeMultiPathIterator.class - [JAR]

├─ com.graphbuilder.curve.ValueVector.class - [JAR]

├─ com.graphbuilder.curve.ValueVectorListener.class - [JAR]

Advertisement