예제 #1
0
 def direction(self, value):
     self._direction = umath.norm_vec(umath.nparray(value))
 def vertex(self, value):
     self._vertex = umath.nparray(value)
예제 #3
0
 def point(self, value):
     self._point = umath.nparray(value)
 def __init__(self, point, normal):
     self.point = umath.nparray(point)
     self.normal = umath.norm_vec(umath.nparray(normal))