mirror of https://gitlab.com/pamhyr/pamhyr2
geometry: Minor change.
parent
3c58c2d64d
commit
e5dc809ae9
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue