Skip to content

Commit d051eee

Browse files
committed
Lib : Changed Space3D.ToString() method
1 parent 72e827e commit d051eee

File tree

1 file changed

+1
-1
lines changed
  • PearlCalculatorLib/PearlCalculationLib/World

1 file changed

+1
-1
lines changed

PearlCalculatorLib/PearlCalculationLib/World/Space3D.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public Space3D(double x , double y , double z)
3333

3434
public Space3D(Space3D space3D) : this(space3D.X , space3D.Y , space3D.Z) { }
3535

36-
public override string ToString() => $"Coordinate : {X} , {Y} , {Z}";
36+
public override string ToString() => $"{X} , {Y} , {Z}";
3737

3838
public double WorldAngle(Space3D position2)
3939
{

0 commit comments

Comments
 (0)