Skip to content

Commit 0e7eb69

Browse files
committed
fix: type declaration (from 1d to 1.0)
1 parent 5930b12 commit 0e7eb69

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Spatial/Euclidean/Circle2D.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ private double[] findParameterTs(Line2D line)
167167
var d = line.Direction;
168168
var r = this.Radius;
169169

170-
var a = 1d;
170+
var a = 1.0;
171171
var b = 2 * (s.DotProduct(d) - d.DotProduct(cc));
172172
var c = (s - cc).DotProduct(s - cc) - r * r;
173173

0 commit comments

Comments
 (0)