Update Bezier.java

This commit is contained in:
hiroshisuga 2020-09-30 22:44:26 +09:00 committed by GitHub
parent a7c981d124
commit ff47857c18
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -238,7 +238,7 @@ public class Bezier {
* @param digitizedPoints Digitized points * @param digitizedPoints Digitized points
* @param maxAngle maximal angle in radians between the current point and its * @param maxAngle maximal angle in radians between the current point and its
* predecessor and successor up to which the point does not break the * predecessor and successor up to which the point does not break the
* digitized list into segments. Recommended value 44 deg = 0.768 rad * 180d / Math.PI * digitized list into segments. Recommended value 44 deg = 44 * 180d / Math.PI
* @return Segments of digitized points, each segment having less than maximal * @return Segments of digitized points, each segment having less than maximal
* angle between points. * angle between points.
*/ */