forked from tdewolff/canvas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpath_util.go
946 lines (849 loc) · 31.8 KB
/
path_util.go
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
package canvas
import (
"math"
)
// EllipsePos returns the position on the ellipse at angle theta.
func EllipsePos(rx, ry, phi, cx, cy, theta float64) Point {
sintheta, costheta := math.Sincos(theta)
sinphi, cosphi := math.Sincos(phi)
x := cx + rx*costheta*cosphi - ry*sintheta*sinphi
y := cy + rx*costheta*sinphi + ry*sintheta*cosphi
return Point{x, y}
}
func ellipseDeriv(rx, ry, phi float64, sweep bool, theta float64) Point {
sintheta, costheta := math.Sincos(theta)
sinphi, cosphi := math.Sincos(phi)
dx := -rx*sintheta*cosphi - ry*costheta*sinphi
dy := -rx*sintheta*sinphi + ry*costheta*cosphi
if !sweep {
return Point{-dx, -dy}
}
return Point{dx, dy}
}
func ellipseDeriv2(rx, ry, phi float64, theta float64) Point {
sintheta, costheta := math.Sincos(theta)
sinphi, cosphi := math.Sincos(phi)
ddx := -rx*costheta*cosphi + ry*sintheta*sinphi
ddy := -rx*costheta*sinphi - ry*sintheta*cosphi
return Point{ddx, ddy}
}
func ellipseCurvatureRadius(rx, ry float64, sweep bool, theta float64) float64 {
// positive for ccw / sweep
// phi has no influence on the curvature
dp := ellipseDeriv(rx, ry, 0.0, sweep, theta)
ddp := ellipseDeriv2(rx, ry, 0.0, theta)
a := dp.PerpDot(ddp)
if Equal(a, 0.0) {
return math.NaN()
}
return math.Pow(dp.X*dp.X+dp.Y*dp.Y, 1.5) / a
}
// ellipseNormal returns the normal to the right at angle theta of the ellipse, given rotation phi.
func ellipseNormal(rx, ry, phi float64, sweep bool, theta, d float64) Point {
return ellipseDeriv(rx, ry, phi, sweep, theta).Rot90CW().Norm(d)
}
// ellipseLength calculates the length of the elliptical arc
// it uses Gauss-Legendre (n=5) and has an error of ~1% or less (empirical)
func ellipseLength(rx, ry, theta1, theta2 float64) float64 {
if theta2 < theta1 {
theta1, theta2 = theta2, theta1
}
speed := func(theta float64) float64 {
return ellipseDeriv(rx, ry, 0.0, true, theta).Length()
}
return gaussLegendre5(speed, theta1, theta2)
}
// ellipseToCenter converts to the center arc format and returns (centerX, centerY, angleFrom, angleTo) with angles in radians. When angleFrom with range [0, 2*PI) is bigger than angleTo with range (-2*PI, 4*PI), the ellipse runs clockwise. The angles are from before the ellipse has been stretched and rotated. See https://www.w3.org/TR/SVG/implnote.html#ArcImplementationNotes
func ellipseToCenter(x1, y1, rx, ry, phi float64, large, sweep bool, x2, y2 float64) (float64, float64, float64, float64) {
if Equal(x1, x2) && Equal(y1, y2) {
return x1, y1, 0.0, 0.0
} else if Equal(math.Abs(x2-x1), rx) && Equal(y1, y2) && Equal(phi, 0.0) {
// common case since circles are defined as two arcs from (+dx,0) to (-dx,0) and back
cx, cy := x1+(x2-x1)/2.0, y1
theta := 0.0
if x1 < x2 {
theta = math.Pi
}
delta := math.Pi
if !sweep {
delta = -delta
}
return cx, cy, theta, theta + delta
}
// compute the half distance between start and end point for the unrotated ellipse
sinphi, cosphi := math.Sincos(phi)
x1p := cosphi*(x1-x2)/2.0 + sinphi*(y1-y2)/2.0
y1p := -sinphi*(x1-x2)/2.0 + cosphi*(y1-y2)/2.0
// check that radii are large enough to reduce rouding errors
radiiCheck := x1p*x1p/rx/rx + y1p*y1p/ry/ry
if 1.0 < radiiCheck {
radiiScale := math.Sqrt(radiiCheck)
rx *= radiiScale
ry *= radiiScale
}
// calculate the center point (cx,cy)
sq := (rx*rx*ry*ry - rx*rx*y1p*y1p - ry*ry*x1p*x1p) / (rx*rx*y1p*y1p + ry*ry*x1p*x1p)
if sq <= Epsilon {
// Epsilon instead of 0.0 improves numerical stability for coef near zero
// this happens when start and end points are at two opposites of the ellipse and
// the line between them passes through the center, a common case
sq = 0.0
}
coef := math.Sqrt(sq)
if large == sweep {
coef = -coef
}
cxp := coef * rx * y1p / ry
cyp := coef * -ry * x1p / rx
cx := cosphi*cxp - sinphi*cyp + (x1+x2)/2.0
cy := sinphi*cxp + cosphi*cyp + (y1+y2)/2.0
// specify U and V vectors; theta = arccos(U*V / sqrt(U*U + V*V))
ux := (x1p - cxp) / rx
uy := (y1p - cyp) / ry
vx := -(x1p + cxp) / rx
vy := -(y1p + cyp) / ry
// calculate the start angle (theta) and extent angle (delta)
theta := math.Acos(ux / math.Sqrt(ux*ux+uy*uy))
if uy < 0.0 {
theta = -theta
}
theta = angleNorm(theta)
deltaAcos := (ux*vx + uy*vy) / math.Sqrt((ux*ux+uy*uy)*(vx*vx+vy*vy))
deltaAcos = math.Min(1.0, math.Max(-1.0, deltaAcos))
delta := math.Acos(deltaAcos)
if ux*vy-uy*vx < 0.0 {
delta = -delta
}
if !sweep && 0.0 < delta { // clockwise in Cartesian
delta -= 2.0 * math.Pi
} else if sweep && delta < 0.0 { // counter clockwise in Cartesian
delta += 2.0 * math.Pi
}
return cx, cy, theta, theta + delta
}
// scale ellipse if rx and ry are too small, see https://www.w3.org/TR/SVG/implnote.html#ArcCorrectionOutOfRangeRadii
func ellipseRadiiCorrection(start Point, rx, ry, phi float64, end Point) float64 {
diff := start.Sub(end)
sinphi, cosphi := math.Sincos(phi)
x1p := (cosphi*diff.X + sinphi*diff.Y) / 2.0
y1p := (-sinphi*diff.X + cosphi*diff.Y) / 2.0
return math.Sqrt(x1p*x1p/rx/rx + y1p*y1p/ry/ry)
}
// ellipseSplit returns the new mid point, the two large parameters and the ok bool, the rest stays the same
func ellipseSplit(rx, ry, phi, cx, cy, theta0, theta1, theta float64) (Point, bool, bool, bool) {
if !angleBetween(theta, theta0, theta1) {
return Point{}, false, false, false
}
mid := EllipsePos(rx, ry, phi, cx, cy, theta)
large0, large1 := false, false
if math.Abs(theta-theta0) > math.Pi {
large0 = true
} else if math.Abs(theta-theta1) > math.Pi {
large1 = true
}
return mid, large0, large1, true
}
func arcToQuad(start Point, rx, ry, phi float64, large, sweep bool, end Point) *Path {
p := &Path{}
p.MoveTo(start.X, start.Y)
for _, bezier := range ellipseToQuadraticBeziers(start, rx, ry, phi, large, sweep, end) {
p.QuadTo(bezier[1].X, bezier[1].Y, bezier[2].X, bezier[2].Y)
}
return p
}
func arcToCube(start Point, rx, ry, phi float64, large, sweep bool, end Point) *Path {
p := &Path{}
p.MoveTo(start.X, start.Y)
for _, bezier := range ellipseToCubicBeziers(start, rx, ry, phi, large, sweep, end) {
p.CubeTo(bezier[1].X, bezier[1].Y, bezier[2].X, bezier[2].Y, bezier[3].X, bezier[3].Y)
}
return p
}
//func ellipseToQuadraticBezierError(a, b, n1, n2 float64) float64 {
// if a < b {
// a, b = b, a
// }
// ba := b / a
// c0, c1 := 0.0, 0.0
// if ba < 0.25 {
// c0 += ((3.92478*ba*ba - 13.5822*ba - 0.233377) / (ba + 0.0128206))
// c0 += ((-1.08814*ba*ba + 0.859987*ba + 0.000362265) / (ba + 0.000229036)) * math.Cos(1.0*(n1+n2))
// c0 += ((-0.942512*ba*ba + 0.390456*ba + 0.0080909) / (ba + 0.00723895)) * math.Cos(2.0*(n1+n2))
// c0 += ((-0.736228*ba*ba + 0.20998*ba + 0.0129867) / (ba + 0.0103456)) * math.Cos(3.0*(n1+n2))
// c1 += ((-0.395018*ba*ba + 6.82464*ba + 0.0995293) / (ba + 0.0122198))
// c1 += ((-0.545608*ba*ba + 0.0774863*ba + 0.0267327) / (ba + 0.0132482)) * math.Cos(1.0*(n1+n2))
// c1 += ((0.0534754*ba*ba - 0.0884167*ba + 0.012595) / (ba + 0.0343396)) * math.Cos(2.0*(n1+n2))
// c1 += ((0.209052*ba*ba - 0.0599987*ba - 0.00723897) / (ba + 0.00789976)) * math.Cos(3.0*(n1+n2))
// } else {
// c0 += ((0.0863805*ba*ba - 11.5595*ba - 2.68765) / (ba + 0.181224))
// c0 += ((0.242856*ba*ba - 1.81073*ba + 1.56876) / (ba + 1.68544)) * math.Cos(1.0*(n1+n2))
// c0 += ((0.233337*ba*ba - 0.455621*ba + 0.222856) / (ba + 0.403469)) * math.Cos(2.0*(n1+n2))
// c0 += ((0.0612978*ba*ba - 0.104879*ba + 0.0446799) / (ba + 0.00867312)) * math.Cos(3.0*(n1+n2))
// c1 += ((0.028973*ba*ba + 6.68407*ba + 0.171472) / (ba + 0.0211706))
// c1 += ((0.0307674*ba*ba - 0.0517815*ba + 0.0216803) / (ba - 0.0749348)) * math.Cos(1.0*(n1+n2))
// c1 += ((-0.0471179*ba*ba + 0.1288*ba - 0.0781702) / (ba + 2.0)) * math.Cos(2.0*(n1+n2))
// c1 += ((-0.0309683*ba*ba + 0.0531557*ba - 0.0227191) / (ba + 0.0434511)) * math.Cos(3.0*(n1+n2))
// }
// return ((0.02*ba*ba + 2.83*ba + 0.125) / (ba + 0.01)) * a * math.Exp(c0+c1*math.Abs(n2-n1))
//}
// see Drawing and elliptical arc using polylines, quadratic or cubic Bézier curves (2003), L. Maisonobe, https://spaceroots.org/documents/ellipse/elliptical-arc.pdf
func ellipseToQuadraticBeziers(start Point, rx, ry, phi float64, large, sweep bool, end Point) [][3]Point {
cx, cy, theta0, theta1 := ellipseToCenter(start.X, start.Y, rx, ry, phi, large, sweep, end.X, end.Y)
dtheta := math.Pi / 2.0 // TODO: use error measure to determine dtheta?
n := int(math.Ceil(math.Abs(theta1-theta0) / dtheta))
dtheta = math.Abs(theta1-theta0) / float64(n) // evenly spread the n points, dalpha will get smaller
kappa := math.Tan(dtheta / 2.0)
if !sweep {
dtheta = -dtheta
}
beziers := [][3]Point{}
startDeriv := ellipseDeriv(rx, ry, phi, sweep, theta0)
for i := 1; i < n+1; i++ {
theta := theta0 + float64(i)*dtheta
end := EllipsePos(rx, ry, phi, cx, cy, theta)
endDeriv := ellipseDeriv(rx, ry, phi, sweep, theta)
cp := start.Add(startDeriv.Mul(kappa))
beziers = append(beziers, [3]Point{start, cp, end})
startDeriv = endDeriv
start = end
}
return beziers
}
//func ellipseToCubicBezierError(a, b, n1, n2 float64) float64 {
// if a < b {
// a, b = b, a
// }
// ba := b / a
// c0, c1 := 0.0, 0.0
// if ba < 0.25 {
// c0 += ((3.85268*ba*ba - 21.229*ba - 0.330434) / (ba + 0.0127842))
// c0 += ((-1.61486*ba*ba + 0.706564*ba + 0.225945) / (ba + 0.263682)) * math.Cos(1.0*(n1+n2))
// c0 += ((-0.910164*ba*ba + 0.388383*ba + 0.00551445) / (ba + 0.00671814)) * math.Cos(2.0*(n1+n2))
// c0 += ((-0.630184*ba*ba + 0.192402*ba + 0.0098871) / (ba + 0.0102527)) * math.Cos(3.0*(n1+n2))
// c1 += ((-0.162211*ba*ba + 9.94329*ba + 0.13723) / (ba + 0.0124084))
// c1 += ((-0.253135*ba*ba + 0.00187735*ba + 0.0230286) / (ba + 0.01264)) * math.Cos(1.0*(n1+n2))
// c1 += ((-0.0695069*ba*ba - 0.0437594*ba + 0.0120636) / (ba + 0.0163087)) * math.Cos(2.0*(n1+n2))
// c1 += ((-0.0328856*ba*ba - 0.00926032*ba - 0.00173573) / (ba + 0.00527385)) * math.Cos(3.0*(n1+n2))
// } else {
// c0 += ((0.0899116*ba*ba - 19.2349*ba - 4.11711) / (ba + 0.183362))
// c0 += ((0.138148*ba*ba - 1.45804*ba + 1.32044) / (ba + 1.38474)) * math.Cos(1.0*(n1+n2))
// c0 += ((0.230903*ba*ba - 0.450262*ba + 0.219963) / (ba + 0.414038)) * math.Cos(2.0*(n1+n2))
// c0 += ((0.0590565*ba*ba - 0.101062*ba + 0.0430592) / (ba + 0.0204699)) * math.Cos(3.0*(n1+n2))
// c1 += ((0.0164649*ba*ba + 9.89394*ba + 0.0919496) / (ba + 0.00760802))
// c1 += ((0.0191603*ba*ba - 0.0322058*ba + 0.0134667) / (ba - 0.0825018)) * math.Cos(1.0*(n1+n2))
// c1 += ((0.0156192*ba*ba - 0.017535*ba + 0.00326508) / (ba - 0.228157)) * math.Cos(2.0*(n1+n2))
// c1 += ((-0.0236752*ba*ba + 0.0405821*ba - 0.0173086) / (ba + 0.176187)) * math.Cos(3.0*(n1+n2))
// }
// return ((0.001*ba*ba + 4.98*ba + 0.207) / (ba + 0.0067)) * a * math.Exp(c0+c1*math.Abs(n2-n1))
//}
//
//func distanceEllipseCubicBezier(start, cp1, cp2, end Point, rx, ry, phi, cx, cy, theta0, theta1 float64) float64 {
// N := 100
// hausdorff := 0.0
// for i := 0; i <= N; i++ {
// t := float64(i) / float64(N)
// pos := cubicBezierPos(start, cp1, cp2, end, t)
//
// dist := func(theta float64) float64 { return EllipsePos(rx, ry, phi, cx, cy, theta).Sub(pos).Length() }
// theta := gradientDescent(dist, theta0, theta1)
// theta2 := lookupMin(dist, theta0, theta1)
// fmt.Println("gradientDescent, loopup:", dist(theta), dist(theta2))
//
// d := dist(theta)
// if hausdorff < d {
// hausdorff = d
// }
// }
// return hausdorff
//}
// see Drawing and elliptical arc using polylines, quadratic or cubic Bézier curves (2003), L. Maisonobe, https://spaceroots.org/documents/ellipse/elliptical-arc.pdf
func ellipseToCubicBeziers(start Point, rx, ry, phi float64, large, sweep bool, end Point) [][4]Point {
cx, cy, theta0, theta1 := ellipseToCenter(start.X, start.Y, rx, ry, phi, large, sweep, end.X, end.Y)
dtheta := math.Pi / 2.0 // TODO: use error measure to determine dtheta?
n := int(math.Ceil(math.Abs(theta1-theta0) / dtheta))
dtheta = math.Abs(theta1-theta0) / float64(n) // evenly spread the n points, dalpha will get smaller
kappa := math.Sin(dtheta) * (math.Sqrt(4.0+3.0*math.Pow(math.Tan(dtheta/2.0), 2.0)) - 1.0) / 3.0
if !sweep {
dtheta = -dtheta
}
beziers := [][4]Point{}
startDeriv := ellipseDeriv(rx, ry, phi, sweep, theta0)
for i := 1; i < n+1; i++ {
theta := theta0 + float64(i)*dtheta
end := EllipsePos(rx, ry, phi, cx, cy, theta)
endDeriv := ellipseDeriv(rx, ry, phi, sweep, theta)
cp1 := start.Add(startDeriv.Mul(kappa))
cp2 := end.Sub(endDeriv.Mul(kappa))
beziers = append(beziers, [4]Point{start, cp1, cp2, end})
startDeriv = endDeriv
start = end
}
return beziers
}
func xmonotoneEllipticArc(start Point, rx, ry, phi float64, large, sweep bool, end Point) *Path {
sign := 1.0
if !sweep {
sign = -1.0
}
cx, cy, theta0, theta1 := ellipseToCenter(start.X, start.Y, rx, ry, phi, large, sweep, end.X, end.Y)
sinphi, cosphi := math.Sincos(phi)
thetaRight := math.Atan2(-ry*sinphi, rx*cosphi)
thetaLeft := thetaRight + math.Pi
p := &Path{}
p.MoveTo(start.X, start.Y)
left := !angleEqual(thetaLeft, theta0) && angleNorm(sign*(thetaLeft-theta0)) < angleNorm(sign*(thetaRight-theta0))
for t := theta0; !angleEqual(t, theta1); {
dt := angleNorm(sign * (theta1 - t))
if left {
dt = math.Min(dt, angleNorm(sign*(thetaLeft-t)))
} else {
dt = math.Min(dt, angleNorm(sign*(thetaRight-t)))
}
t += sign * dt
pos := EllipsePos(rx, ry, phi, cx, cy, t)
p.ArcTo(rx, ry, phi*180.0/math.Pi, large, sweep, pos.X, pos.Y)
left = !left
}
return p
}
func flattenEllipticArc(start Point, rx, ry, phi float64, large, sweep bool, end Point, tolerance float64) *Path {
if Equal(rx, ry) {
// circle
r := rx
cx, cy, theta0, theta1 := ellipseToCenter(start.X, start.Y, rx, ry, phi, large, sweep, end.X, end.Y)
theta0 += phi
theta1 += phi
// draw line segments from arc+tolerance to arc+tolerance, touching arc-tolerance in between
// we start and end at the arc itself
dtheta := math.Abs(theta1 - theta0)
thetam := math.Acos(r / (r + tolerance)) // half angle of first/last segment
thetat := math.Acos(r / (r + 2.0*tolerance)) // half angle of middle segments
n := math.Ceil((dtheta - thetam*2.0) / (thetat * 2.0))
// evenly space out points along arc
ratio := dtheta / (thetam*2.0 + thetat*2.0*n)
thetam *= ratio
thetat *= ratio
// adjust distance from arc to lower total deviation area, add points on the outer circle
// of the tolerance since the middle of the line segment touches the inner circle and thus
// even out. Ratio < 1 is when the line segments are shorter (and thus not touch the inner
// tolerance circle).
r += ratio * tolerance
p := &Path{}
p.MoveTo(start.X, start.Y)
theta := thetam + thetat
for i := 0; i < int(n); i++ {
t := theta0 + math.Copysign(theta, theta1-theta0)
pos := PolarPoint(t, r).Add(Point{cx, cy})
p.LineTo(pos.X, pos.Y)
theta += 2.0 * thetat
}
p.LineTo(end.X, end.Y)
return p
}
// TODO: (flatten ellipse) use direct algorithm
return arcToCube(start, rx, ry, phi, large, sweep, end).Flatten(tolerance)
}
////////////////////////////////////////////////////////////////
// Béziers /////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////
func quadraticToCubicBezier(p0, p1, p2 Point) (Point, Point) {
c1 := p0.Interpolate(p1, 2.0/3.0)
c2 := p2.Interpolate(p1, 2.0/3.0)
return c1, c2
}
// see http://www.caffeineowl.com/graphics/2d/vectorial/cubic2quad01.html
//func cubicToQuadraticBeziers(p0, p1, p2, p3 Point, tolerance float64) [][3]Point {
// // TODO: misses theoretic background for optimal number of quads
// quads := [][3]Point{}
// endQuads := [][3]Point{}
// for {
// // dist = sqrt(3)/36 * ||p3 - 3*p2 + 3*p1 - p0||
// dist := math.Sqrt(3.0) / 36.0 * p3.Sub(p2.Mul(3.0)).Add(p1.Mul(3.0)).Sub(p0).Length()
// t := math.Cbrt(tolerance / dist)
//
// // cp = (3*p2 - p3 + 3*p1 - p0) / 4
// if t >= 1.0 {
// // approximate by one quadratic bezier
// pcp := p2.Mul(3.0).Sub(p3).Add(p1.Mul(3.0)).Sub(p0).Div(4.0)
// quads = append(quads, [3]Point{p0, pcp, p3})
// break
// } else if t >= 0.5 {
// // approximate by two quadratic beziers
// r0, r1, r2, r3, q0, q1, q2, q3 := cubicBezierSplit(p0, p1, p2, p3, 0.5)
// rcp := r2.Mul(3.0).Sub(r3).Add(r1.Mul(3.0)).Sub(r0).Div(4.0)
// qcp := q2.Mul(3.0).Sub(q3).Add(q1.Mul(3.0)).Sub(q0).Div(4.0)
// quads = append(quads, [3]Point{r0, rcp, r3}, [3]Point{q0, qcp, q3})
// break
// } else {
// // approximate start and end by two quadratic beziers, and reevaluate the middle part
// r0, r1, r2, r3, q0, q1, q2, q3 := cubicBezierSplit(p0, p1, p2, p3, 1-t)
// r0, r1, r2, r3, p0, p1, p2, p3 = cubicBezierSplit(r0, r1, r2, r3, t/(1-t))
// rcp := r2.Mul(3.0).Sub(r3).Add(r1.Mul(3.0)).Sub(r0).Div(4.0)
// qcp := q2.Mul(3.0).Sub(q3).Add(q1.Mul(3.0)).Sub(q0).Div(4.0)
// quads = append(quads, [3]Point{r0, rcp, r3})
// endQuads = append([][3]Point{{q0, qcp, q3}}, endQuads...)
// }
// }
// return append(quads, endQuads...)
//}
func quadraticBezierPos(p0, p1, p2 Point, t float64) Point {
p0 = p0.Mul(1.0 - 2.0*t + t*t)
p1 = p1.Mul(2.0*t - 2.0*t*t)
p2 = p2.Mul(t * t)
return p0.Add(p1).Add(p2)
}
func quadraticBezierDeriv(p0, p1, p2 Point, t float64) Point {
p0 = p0.Mul(-2.0 + 2.0*t)
p1 = p1.Mul(2.0 - 4.0*t)
p2 = p2.Mul(2.0 * t)
return p0.Add(p1).Add(p2)
}
func quadraticBezierDeriv2(p0, p1, p2 Point) Point {
p0 = p0.Mul(2.0)
p1 = p1.Mul(-4.0)
p2 = p2.Mul(2.0)
return p0.Add(p1).Add(p2)
}
// return the normal at the right-side of the curve (when increasing t)
//func quadraticBezierNormal(p0, p1, p2 Point, t, d float64) Point {
// if t == 0.0 {
// n := p1.Sub(p0)
// if n.X == 0 && n.Y == 0 {
// n = p2.Sub(p0)
// }
// if n.X == 0 && n.Y == 0 {
// return Point{}
// }
// return n.Rot90CW().Norm(d)
// } else if t == 1.0 {
// n := p2.Sub(p1)
// if n.X == 0 && n.Y == 0 {
// n = p2.Sub(p0)
// }
// if n.X == 0 && n.Y == 0 {
// return Point{}
// }
// return n.Rot90CW().Norm(d)
// }
// panic("not implemented") // not needed
//}
// see https://malczak.linuxpl.com/blog/quadratic-bezier-curve-length/
func quadraticBezierLength(p0, p1, p2 Point) float64 {
a := p0.Sub(p1.Mul(2.0)).Add(p2)
b := p1.Mul(2.0).Sub(p0.Mul(2.0))
A := 4.0 * a.Dot(a)
B := 4.0 * a.Dot(b)
C := b.Dot(b)
if Equal(A, 0.0) {
// p1 is in the middle between p0 and p2, so it is a straight line from p0 to p2
return p2.Sub(p0).Length()
}
Sabc := 2.0 * math.Sqrt(A+B+C)
A2 := math.Sqrt(A)
A32 := 2.0 * A * A2
C2 := 2.0 * math.Sqrt(C)
BA := B / A2
return (A32*Sabc + A2*B*(Sabc-C2) + (4.0*C*A-B*B)*math.Log((2.0*A2+BA+Sabc)/(BA+C2))) / (4.0 * A32)
}
func quadraticBezierSplit(p0, p1, p2 Point, t float64) (Point, Point, Point, Point, Point, Point) {
q0 := p0
q1 := p0.Interpolate(p1, t)
r2 := p2
r1 := p1.Interpolate(p2, t)
r0 := q1.Interpolate(r1, t)
q2 := r0
return q0, q1, q2, r0, r1, r2
}
func quadraticBezierDistance(p0, p1, p2, q Point) float64 {
f := p0.Sub(p1.Mul(2.0)).Add(p2)
g := p1.Mul(2.0).Sub(p0.Mul(2.0))
h := p0.Sub(q)
a := 4.0 * (f.X*f.X + f.Y*f.Y)
b := 6.0 * (f.X*g.X + f.Y*g.Y)
c := 2.0 * (2.0*(f.X*h.X+f.Y*h.Y) + g.X*g.X + g.Y*g.Y)
d := 2.0 * (g.X*h.X + g.Y*h.Y)
dist := math.Inf(1.0)
t0, t1, t2 := solveCubicFormula(a, b, c, d)
ts := []float64{t0, t1, t2, 0.0, 1.0}
for _, t := range ts {
if !math.IsNaN(t) {
if t < 0.0 {
t = 0.0
} else if 1.0 < t {
t = 1.0
}
if tmpDist := quadraticBezierPos(p0, p1, p2, t).Sub(q).Length(); tmpDist < dist {
dist = tmpDist
}
}
}
return dist
}
func cubicBezierPos(p0, p1, p2, p3 Point, t float64) Point {
p0 = p0.Mul(1.0 - 3.0*t + 3.0*t*t - t*t*t)
p1 = p1.Mul(3.0*t - 6.0*t*t + 3.0*t*t*t)
p2 = p2.Mul(3.0*t*t - 3.0*t*t*t)
p3 = p3.Mul(t * t * t)
return p0.Add(p1).Add(p2).Add(p3)
}
func cubicBezierDeriv(p0, p1, p2, p3 Point, t float64) Point {
p0 = p0.Mul(-3.0 + 6.0*t - 3.0*t*t)
p1 = p1.Mul(3.0 - 12.0*t + 9.0*t*t)
p2 = p2.Mul(6.0*t - 9.0*t*t)
p3 = p3.Mul(3.0 * t * t)
return p0.Add(p1).Add(p2).Add(p3)
}
func cubicBezierDeriv2(p0, p1, p2, p3 Point, t float64) Point {
p0 = p0.Mul(6.0 - 6.0*t)
p1 = p1.Mul(18.0*t - 12.0)
p2 = p2.Mul(6.0 - 18.0*t)
p3 = p3.Mul(6.0 * t)
return p0.Add(p1).Add(p2).Add(p3)
}
func cubicBezierDeriv3(p0, p1, p2, p3 Point, t float64) Point {
p0 = p0.Mul(-6.0)
p1 = p1.Mul(18.0)
p2 = p2.Mul(-18.0)
p3 = p3.Mul(6.0)
return p0.Add(p1).Add(p2).Add(p3)
}
// negative when curve bends CW while following t
func cubicBezierCurvatureRadius(p0, p1, p2, p3 Point, t float64) float64 {
dp := cubicBezierDeriv(p0, p1, p2, p3, t)
ddp := cubicBezierDeriv2(p0, p1, p2, p3, t)
a := dp.PerpDot(ddp) // negative when bending right ie. curve is CW at this point
if Equal(a, 0.0) {
return math.NaN()
}
return math.Pow(dp.X*dp.X+dp.Y*dp.Y, 1.5) / a
}
// return the normal at the right-side of the curve (when increasing t)
func cubicBezierNormal(p0, p1, p2, p3 Point, t, d float64) Point {
// TODO: remove and use cubicBezierDeriv + Rot90CW?
if t == 0.0 {
n := p1.Sub(p0)
if n.X == 0 && n.Y == 0 {
n = p2.Sub(p0)
}
if n.X == 0 && n.Y == 0 {
n = p3.Sub(p0)
}
if n.X == 0 && n.Y == 0 {
return Point{}
}
return n.Rot90CW().Norm(d)
} else if t == 1.0 {
n := p3.Sub(p2)
if n.X == 0 && n.Y == 0 {
n = p3.Sub(p1)
}
if n.X == 0 && n.Y == 0 {
n = p3.Sub(p0)
}
if n.X == 0 && n.Y == 0 {
return Point{}
}
return n.Rot90CW().Norm(d)
}
panic("not implemented") // not needed
}
// cubicBezierLength calculates the length of the Bézier, taking care of inflection points. It uses Gauss-Legendre (n=5) and has an error of ~1% or less (empirical).
func cubicBezierLength(p0, p1, p2, p3 Point) float64 {
t1, t2 := findInflectionPointsCubicBezier(p0, p1, p2, p3)
var beziers [][4]Point
if t1 > 0.0 && t1 < 1.0 && t2 > 0.0 && t2 < 1.0 {
p0, p1, p2, p3, q0, q1, q2, q3 := cubicBezierSplit(p0, p1, p2, p3, t1)
t2 = (t2 - t1) / (1.0 - t1)
q0, q1, q2, q3, r0, r1, r2, r3 := cubicBezierSplit(q0, q1, q2, q3, t2)
beziers = append(beziers, [4]Point{p0, p1, p2, p3})
beziers = append(beziers, [4]Point{q0, q1, q2, q3})
beziers = append(beziers, [4]Point{r0, r1, r2, r3})
} else if t1 > 0.0 && t1 < 1.0 {
p0, p1, p2, p3, q0, q1, q2, q3 := cubicBezierSplit(p0, p1, p2, p3, t1)
beziers = append(beziers, [4]Point{p0, p1, p2, p3})
beziers = append(beziers, [4]Point{q0, q1, q2, q3})
} else {
beziers = append(beziers, [4]Point{p0, p1, p2, p3})
}
length := 0.0
for _, bezier := range beziers {
speed := func(t float64) float64 {
return cubicBezierDeriv(bezier[0], bezier[1], bezier[2], bezier[3], t).Length()
}
length += gaussLegendre7(speed, 0.0, 1.0)
}
return length
}
func cubicBezierNumInflections(p0, p1, p2, p3 Point) int {
t1, t2 := findInflectionPointsCubicBezier(p0, p1, p2, p3)
if !math.IsNaN(t2) {
return 2
} else if !math.IsNaN(t1) {
return 1
}
return 0
}
func cubicBezierSplit(p0, p1, p2, p3 Point, t float64) (Point, Point, Point, Point, Point, Point, Point, Point) {
pm := p1.Interpolate(p2, t)
q0 := p0
q1 := p0.Interpolate(p1, t)
q2 := q1.Interpolate(pm, t)
r3 := p3
r2 := p2.Interpolate(p3, t)
r1 := pm.Interpolate(r2, t)
r0 := q2.Interpolate(r1, t)
q3 := r0
return q0, q1, q2, q3, r0, r1, r2, r3
}
func addCubicBezierLine(p *Path, p0, p1, p2, p3 Point, t, d float64) {
if p0.Equals(p3) && (p0.Equals(p1) || p0.Equals(p2)) {
// Bézier has p0=p1=p3 or p0=p2=p3 and thus has no surface or length
return
}
pos := Point{}
if t == 0.0 {
// line to beginning of path
pos = p0
if d != 0.0 {
n := cubicBezierNormal(p0, p1, p2, p3, t, d)
pos = pos.Add(n)
}
} else if t == 1.0 {
// line to the end of the path
pos = p3
if d != 0.0 {
n := cubicBezierNormal(p0, p1, p2, p3, t, d)
pos = pos.Add(n)
}
} else {
panic("not implemented")
}
p.LineTo(pos.X, pos.Y)
}
func xmonotoneQuadraticBezier(p0, p1, p2 Point) *Path {
p := &Path{}
p.MoveTo(p0.X, p0.Y)
if tdenom := (p0.X - 2*p1.X + p2.X); !Equal(tdenom, 0.0) {
if t := (p0.X - p1.X) / tdenom; 0.0 < t && t < 1.0 {
_, q1, q2, _, r1, r2 := quadraticBezierSplit(p0, p1, p2, t)
p.QuadTo(q1.X, q1.Y, q2.X, q2.Y)
p1, p2 = r1, r2
}
}
p.QuadTo(p1.X, p1.Y, p2.X, p2.Y)
return p
}
func flattenQuadraticBezier(p0, p1, p2 Point, tolerance float64) *Path {
// see Flat, precise flattening of cubic Bézier path and offset curves, by T.F. Hain et al., 2005, https://www.sciencedirect.com/science/article/pii/S0097849305001287
t := 0.0
p := &Path{}
p.MoveTo(p0.X, p0.Y)
for t < 1.0 {
D := p1.Sub(p0)
if p0.Equals(p1) {
// p0 == p1, curve is a straight line from p0 to p2
// should not occur directly from paths as this is prevented in QuadTo, but may appear in other subroutines
break
}
denom := math.Hypot(D.X, D.Y) // equal to r1
s2nom := D.PerpDot(p2.Sub(p0))
//effFlatness := tolerance / (1.0 - d*s2nom/(denom*denom*denom)/2.0)
t = 2.0 * math.Sqrt(tolerance*math.Abs(denom/s2nom))
if t >= 1.0 {
break
}
_, _, _, p0, p1, p2 = quadraticBezierSplit(p0, p1, p2, t)
p.LineTo(p0.X, p0.Y)
}
p.LineTo(p2.X, p2.Y)
return p
}
func xmonotoneCubicBezier(p0, p1, p2, p3 Point) *Path {
a := -p0.X + 3*p1.X - 3*p2.X + p3.X
b := 2*p0.X - 4*p1.X + 2*p2.X
c := -p0.X + p1.X
p := &Path{}
p.MoveTo(p0.X, p0.Y)
split := false
t1, t2 := solveQuadraticFormula(a, b, c)
if !math.IsNaN(t1) && IntervalExclusive(t1, 0.0, 1.0) {
_, q1, q2, q3, r0, r1, r2, r3 := cubicBezierSplit(p0, p1, p2, p3, t1)
p.CubeTo(q1.X, q1.Y, q2.X, q2.Y, q3.X, q3.Y)
p0, p1, p2, p3 = r0, r1, r2, r3
split = true
}
if !math.IsNaN(t2) && IntervalExclusive(t2, 0.0, 1.0) {
if split {
t2 = (t2 - t1) / (1.0 - t1)
}
_, q1, q2, q3, _, r1, r2, r3 := cubicBezierSplit(p0, p1, p2, p3, t2)
p.CubeTo(q1.X, q1.Y, q2.X, q2.Y, q3.X, q3.Y)
p1, p2, p3 = r1, r2, r3
}
p.CubeTo(p1.X, p1.Y, p2.X, p2.Y, p3.X, p3.Y)
return p
}
func flattenCubicBezier(p0, p1, p2, p3 Point, tolerance float64) *Path {
return strokeCubicBezier(p0, p1, p2, p3, 0.0, tolerance)
}
// split the curve and replace it by lines as long as (maximum deviation <= tolerance) is maintained
func flattenSmoothCubicBezier(p *Path, p0, p1, p2, p3 Point, d, tolerance float64) {
t := 0.0
for t < 1.0 {
D := p1.Sub(p0)
if p0.Equals(p1) {
// p0 == p1, base on p2
D = p2.Sub(p0)
if p0.Equals(p2) {
// p0 == p1 == p2, curve is a straight line from p0 to p3
p.LineTo(p3.X, p3.Y)
return
}
}
denom := D.Length() // equal to r1
// effective flatness distorts the stroke width as both sides have different cuts
//effFlatness := flatness / (1.0 - d*s2nom/(denom*denom*denom)*2.0/3.0)
s2nom := D.PerpDot(p2.Sub(p0))
s2inv := denom / s2nom
t2 := 2.0 * math.Sqrt(tolerance*math.Abs(s2inv)/3.0)
// if s2 is small, s3 may represent the curvature more accurately
// we cannot calculate the effective flatness here
s3nom := D.PerpDot(p3.Sub(p0))
s3inv := denom / s3nom
t3 := 2.0 * math.Cbrt(tolerance*math.Abs(s3inv))
// choose whichever is most curved, P2-P0 or P3-P0
t = math.Min(t2, t3)
if t >= 1.0 {
break
}
_, _, _, _, p0, p1, p2, p3 = cubicBezierSplit(p0, p1, p2, p3, t)
addCubicBezierLine(p, p0, p1, p2, p3, 0.0, d)
}
addCubicBezierLine(p, p0, p1, p2, p3, 1.0, d)
}
func findInflectionPointsCubicBezier(p0, p1, p2, p3 Point) (float64, float64) {
// see www.faculty.idc.ac.il/arik/quality/appendixa.html
// we omit multiplying bx,by,cx,cy with 3.0, so there is no need for divisions when calculating a,b,c
ax := -p0.X + 3.0*p1.X - 3.0*p2.X + p3.X
ay := -p0.Y + 3.0*p1.Y - 3.0*p2.Y + p3.Y
bx := p0.X - 2.0*p1.X + p2.X
by := p0.Y - 2.0*p1.Y + p2.Y
cx := -p0.X + p1.X
cy := -p0.Y + p1.Y
a := (ay*bx - ax*by)
b := (ay*cx - ax*cy)
c := (by*cx - bx*cy)
x1, x2 := solveQuadraticFormula(a, b, c)
if x1 < Epsilon/2.0 || 1.0-Epsilon/2.0 < x1 {
x1 = math.NaN()
}
if x2 < Epsilon/2.0 || 1.0-Epsilon/2.0 < x2 {
x2 = math.NaN()
} else if math.IsNaN(x1) {
x1, x2 = x2, x1
}
return x1, x2
}
func findInflectionPointRangeCubicBezier(p0, p1, p2, p3 Point, t, tolerance float64) (float64, float64) {
// find the range around an inflection point that we consider flat within the flatness criterion
if math.IsNaN(t) {
return math.Inf(1), math.Inf(1)
}
if t < 0.0 || t > 1.0 {
panic("t outside 0.0--1.0 range")
}
// we state that s(t) = 3*s2*t^2 + (s3 - 3*s2)*t^3 (see paper on the r-s coordinate system)
// with s(t) aligned perpendicular to the curve at t = 0
// then we impose that s(tf) = flatness and find tf
// at inflection points however, s2 = 0, so that s(t) = s3*t^3
if !Equal(t, 0.0) {
_, _, _, _, p0, p1, p2, p3 = cubicBezierSplit(p0, p1, p2, p3, t)
}
nr := p1.Sub(p0)
ns := p3.Sub(p0)
if Equal(nr.X, 0.0) && Equal(nr.Y, 0.0) {
// if p0=p1, then rn (the velocity at t=0) needs adjustment
// nr = lim[t->0](B'(t)) = 3*(p1-p0) + 6*t*((p1-p0)+(p2-p1)) + second order terms of t
// if (p1-p0)->0, we use (p2-p1)=(p2-p0)
nr = p2.Sub(p0)
}
if Equal(nr.X, 0.0) && Equal(nr.Y, 0.0) {
// if rn is still zero, this curve has p0=p1=p2, so it is straight
return 0.0, 1.0
}
s3 := math.Abs(ns.X*nr.Y-ns.Y*nr.X) / math.Hypot(nr.X, nr.Y)
if Equal(s3, 0.0) {
return 0.0, 1.0 // can approximate whole curve linearly
}
tf := math.Cbrt(tolerance / s3)
return t - tf*(1.0-t), t + tf*(1.0-t)
}
// see Flat, precise flattening of cubic Bézier path and offset curves, by T.F. Hain et al., 2005, https://www.sciencedirect.com/science/article/pii/S0097849305001287
// see https://github.com/Manishearth/stylo-flat/blob/master/gfx/2d/Path.cpp for an example implementation
// or https://docs.rs/crate/lyon_bezier/0.4.1/source/src/flatten_cubic.rs
// p0, p1, p2, p3 are the start points, two control points and the end points respectively. With flatness defined as the maximum error from the orinal curve, and d the half width of the curve used for stroking (positive is to the right).
func strokeCubicBezier(p0, p1, p2, p3 Point, d, tolerance float64) *Path {
p := &Path{}
start := p0.Add(cubicBezierNormal(p0, p1, p2, p3, 0.0, d))
p.MoveTo(start.X, start.Y)
// 0 <= t1 <= 1 if t1 exists
// 0 <= t1 <= t2 <= 1 if t1 and t2 both exist
t1, t2 := findInflectionPointsCubicBezier(p0, p1, p2, p3)
if math.IsNaN(t1) && math.IsNaN(t2) {
// There are no inflection points or cusps, approximate linearly by subdivision.
flattenSmoothCubicBezier(p, p0, p1, p2, p3, d, tolerance)
return p
}
// t1min <= t1max; with 0 <= t1max and t1min <= 1
// t2min <= t2max; with 0 <= t2max and t2min <= 1
t1min, t1max := findInflectionPointRangeCubicBezier(p0, p1, p2, p3, t1, tolerance)
t2min, t2max := findInflectionPointRangeCubicBezier(p0, p1, p2, p3, t2, tolerance)
if math.IsNaN(t2) && t1min <= 0.0 && 1.0 <= t1max {
// There is no second inflection point, and the first inflection point can be entirely approximated linearly.
addCubicBezierLine(p, p0, p1, p2, p3, 1.0, d)
return p
}
if 0.0 < t1min {
// Flatten up to t1min
q0, q1, q2, q3, _, _, _, _ := cubicBezierSplit(p0, p1, p2, p3, t1min)
flattenSmoothCubicBezier(p, q0, q1, q2, q3, d, tolerance)
}
if 0.0 < t1max && t1max < 1.0 && t1max < t2min {
// t1 and t2 ranges do not overlap, approximate t1 linearly
_, _, _, _, q0, q1, q2, q3 := cubicBezierSplit(p0, p1, p2, p3, t1max)
addCubicBezierLine(p, q0, q1, q2, q3, 0.0, d)
if 1.0 <= t2min {
// No t2 present, approximate the rest linearly by subdivision
flattenSmoothCubicBezier(p, q0, q1, q2, q3, d, tolerance)
return p
}
} else if 1.0 <= t2min {
// No t2 present and t1max is past the end of the curve, approximate linearly
addCubicBezierLine(p, p0, p1, p2, p3, 1.0, d)
return p
}
// t1 and t2 exist and ranges might overlap
if 0.0 < t2min {
if t2min < t1max {
// t2 range starts inside t1 range, approximate t1 range linearly
_, _, _, _, q0, q1, q2, q3 := cubicBezierSplit(p0, p1, p2, p3, t1max)
addCubicBezierLine(p, q0, q1, q2, q3, 0.0, d)
} else {
// no overlap
_, _, _, _, q0, q1, q2, q3 := cubicBezierSplit(p0, p1, p2, p3, t1max)
t2minq := (t2min - t1max) / (1 - t1max)
q0, q1, q2, q3, _, _, _, _ = cubicBezierSplit(q0, q1, q2, q3, t2minq)
flattenSmoothCubicBezier(p, q0, q1, q2, q3, d, tolerance)
}
}
// handle (the rest of) t2
if t2max < 1.0 {
_, _, _, _, q0, q1, q2, q3 := cubicBezierSplit(p0, p1, p2, p3, t2max)
addCubicBezierLine(p, q0, q1, q2, q3, 0.0, d)
flattenSmoothCubicBezier(p, q0, q1, q2, q3, d, tolerance)
} else {
// t2max extends beyond 1
addCubicBezierLine(p, p0, p1, p2, p3, 1.0, d)
}
return p
}