You can download curvesapi-1.04.jar in this page.
BSD License
curvesapi-1.04.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/com.github.virtuald/curvesapi/pom.properties META-INF/maven/com.github.virtuald/curvesapi/pom.xml com.graphbuilder.curve.BSpline.class com.graphbuilder.curve.BezierCurve.class com.graphbuilder.curve.BinaryCurveApproximationAlgorithm.class com.graphbuilder.curve.CardinalSpline.class com.graphbuilder.curve.CatmullRomSpline.class com.graphbuilder.curve.ControlPath.class com.graphbuilder.curve.ControlStringParseException.class com.graphbuilder.curve.CubicBSpline.class com.graphbuilder.curve.Curve.class com.graphbuilder.curve.GroupIterator.class com.graphbuilder.curve.LagrangeCurve.class com.graphbuilder.curve.MultiPath.class com.graphbuilder.curve.NURBSpline.class com.graphbuilder.curve.NaturalCubicSpline.class com.graphbuilder.curve.ParametricCurve.class com.graphbuilder.curve.Point.class com.graphbuilder.curve.Polyline.class com.graphbuilder.curve.ShapeMultiPath.class com.graphbuilder.curve.ShapeMultiPathIterator.class com.graphbuilder.curve.ValueVector.class com.graphbuilder.curve.ValueVectorListener.class com.graphbuilder.geom.Geom.class com.graphbuilder.geom.Point2d.class com.graphbuilder.geom.Point3d.class com.graphbuilder.geom.PointFactory.class com.graphbuilder.math.AddNode.class com.graphbuilder.math.DivNode.class com.graphbuilder.math.Expression.class com.graphbuilder.math.ExpressionParseException.class com.graphbuilder.math.ExpressionTree.class com.graphbuilder.math.FuncMap.class com.graphbuilder.math.FuncNode.class com.graphbuilder.math.MultNode.class com.graphbuilder.math.OpNode.class com.graphbuilder.math.PascalsTriangle.class com.graphbuilder.math.PowNode.class com.graphbuilder.math.SubNode.class com.graphbuilder.math.TermNode.class com.graphbuilder.math.ValNode.class com.graphbuilder.math.VarMap.class com.graphbuilder.math.VarNode.class com.graphbuilder.math.func.AbsFunction.class com.graphbuilder.math.func.AcosFunction.class com.graphbuilder.math.func.AcoshFunction.class com.graphbuilder.math.func.AsinFunction.class com.graphbuilder.math.func.AsinhFunction.class com.graphbuilder.math.func.AtanFunction.class com.graphbuilder.math.func.AtanhFunction.class com.graphbuilder.math.func.AvgFunction.class com.graphbuilder.math.func.CeilFunction.class com.graphbuilder.math.func.CombinFunction.class com.graphbuilder.math.func.CosFunction.class com.graphbuilder.math.func.CoshFunction.class com.graphbuilder.math.func.EFunction.class com.graphbuilder.math.func.ExpFunction.class com.graphbuilder.math.func.FactFunction.class com.graphbuilder.math.func.FloorFunction.class com.graphbuilder.math.func.Function.class com.graphbuilder.math.func.LgFunction.class com.graphbuilder.math.func.LnFunction.class com.graphbuilder.math.func.LogFunction.class com.graphbuilder.math.func.MaxFunction.class com.graphbuilder.math.func.MinFunction.class com.graphbuilder.math.func.ModFunction.class com.graphbuilder.math.func.PiFunction.class com.graphbuilder.math.func.PowFunction.class com.graphbuilder.math.func.RandFunction.class com.graphbuilder.math.func.RoundFunction.class com.graphbuilder.math.func.SignFunction.class com.graphbuilder.math.func.SinFunction.class com.graphbuilder.math.func.SinhFunction.class com.graphbuilder.math.func.SqrtFunction.class com.graphbuilder.math.func.SumFunction.class com.graphbuilder.math.func.TanFunction.class com.graphbuilder.math.func.TanhFunction.class com.graphbuilder.org.apache.harmony.awt.gl.Crossing.class com.graphbuilder.struc.Bag.class com.graphbuilder.struc.LinkedList.class com.graphbuilder.struc.Stack.class
curvesapi-1.04.pom file content.
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.github.virtuald</groupId> <artifactId>curvesapi</artifactId> <version>1.04</version> <name>curvesapi</name> <description>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.</description> <url>https://github.com/virtuald/curvesapi</url> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.3</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.4</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.3</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <additionalparam>-Xdoclint:none</additionalparam> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <licenses> <license> <name>BSD License</name> <url>http://opensource.org/licenses/BSD-3-Clause</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>https://github.com/virtuald/curvesapi</url> <connection>scm:git:git://github.com/virtuald/curvesapi.git</connection> <developerConnection>scm:git:git@github.com/virtuald/curvesapi.git</developerConnection> </scm> <developers> <developer> <name>stormdollar</name> <url>http://sourceforge.net/u/stormdollar/profile/</url> <id>stormdollar</id> </developer> <developer> <name>Dustin Spicuzza</name> <url>https://github.com/virtuald</url> <id>virtuald</id> </developer> </developers> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> </dependencies> </project>
<dependency> <groupId>com.github.virtuald</groupId> <artifactId>curvesapi</artifactId> <version>1.04</version> </dependency>
If you think the following curvesapi-1.04.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download curvesapi-1.04.jar file