组织ID: |
com.github.virtuald |
项目ID: |
curvesapi |
版本: |
1.02 |
最后修改时间: |
2018-09-07 15:33:12 |
包类型: |
jar |
标题: |
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. |
相关URL: |
https://github.com/virtuald/curvesapi |
大小: |
93.87KB |
|
Maven引入代码: |
<dependency>
<groupId>com.github.virtuald</groupId>
<artifactId>curvesapi</artifactId>
<version>1.02</version>
</dependency>
|
Gradle引入代码: |
com.github.virtuald:curvesapi:1.02
|
下载Jar包: |
|
POM文件内容: |
<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.02</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>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</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>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
com.graphbuilder.curve.BezierCurve.class
com.graphbuilder.curve.BinaryCurveApproximationAlgorithm.class
com.graphbuilder.curve.BSpline.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.NaturalCubicSpline.class
com.graphbuilder.curve.NURBSpline.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$Point2D.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.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
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
无
|