Commit e5dc809a authored by Pierre-Antoine Rouby's avatar Pierre-Antoine Rouby
Browse files

geometry: Minor change.

Showing with 2 additions and 2 deletions
+2 -2
......@@ -3,12 +3,12 @@
from math import dist
from pandas import isna as pd_is_na
from Model.Geometry.PointXY import PointXY
from Model.Geometry.Point import Point
class PointXYZ(Point):
def __init__(self, x:float = 0.0, y:float = 0.0, z:float = 0.0,
name:str = ""):
super(PointXYZ, self).__init__(x=x, y=y, name=name)
super(PointXYZ, self).__init__(name=name)
self._x = float(x)
self._y = float(y)
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment