-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.txt
35 lines (26 loc) · 890 Bytes
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
This project demonstrate a Polynomial utility class
Supported operation:
- + - * /
Derivate Integrate
FindRoots (Polynomial root solver, i.e. value for which the Polynomial compute to 0)
Compute, of course! for double and Complex
Bezier Equations
Interpolate()
2015 June 10
Added PolyCurve class for parameterized multidimensional curves
With
- DistanceTo(), ClosestPoint(), ClosestParameter() methods
- Interpolate()
- Bezier()
Finally in PolygonUtils there are the some measurement methods
(illustrated in the WPF demo)
Distance To Bezier
Distance To Segment
Introduction on CodeProject
---------------------------
http://www.codeproject.com/Tips/865874/Polynomial-class-with-FindRoots-method
CREDITS
=======
Special Thanks to "Jeremy Alles" for his Bezier Demo
http://www.japf.fr/2009/07/beziersegment-demo-application/
Which I used as the basis of my visual test.