https://github.com/virtuald/curvesapi
Java implementation of various mathematical curves that define themselves over a set of control points.
https://github.com/virtuald/curvesapi
Last synced: about 1 year ago
JSON representation
Java implementation of various mathematical curves that define themselves over a set of control points.
- Host: GitHub
- URL: https://github.com/virtuald/curvesapi
- Owner: virtuald
- License: other
- Created: 2015-02-21T18:20:01.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2023-08-11T01:09:56.000Z (almost 3 years ago)
- Last Synced: 2025-03-30T07:12:02.246Z (about 1 year ago)
- Language: Java
- Size: 230 KB
- Stars: 29
- Watchers: 6
- Forks: 17
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: license.txt
Awesome Lists containing this project
README
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.
About this project
------------------
This is a mavenized version of http://sourceforge.net/projects/curves . This
is not quite a fork -- as I do not intend to change/improve the project.
However, bugfixes and reasonably scoped improvements will be accepted.
List of changes
---------------
* Version has been bumped to 1.08
* The javadocs have been removed from this distribution
* The build scripts have been removed and pom.xml has been added to support
usage with maven
* No longer using JDK internals to compute path intersection, copied
Crossing.java from Apache Harmony instead
* The 'appendTo' method now raises IllegalArgumentException with useful error
messages on invalid arguments instead of swallowing the error
* A PointFactory has been added to aid in creating points
* Point2d now extends Point
* Uses standard maven source layout
* Added simple test for ShapeMultiPath
Licenses
--------
The original project used a BSD license, and remains so.
com.graphbuilder.org.apache.harmony.awt.gl.Crossing is from the Apache
Harmony project and is released under the Apache 2.0 license.