예제 #1
0
def test_average_points_dist():
    p0 = Point(0.0, 0.0, 0.0, 3.0)
    p1 = Point(0.0, 0.0, 1.0, 3.0)
    p2 = Point(0.0, 1.0, 0.0, 3.0)
    p3 = Point(1.0, 0.0, 0.0, 3.0)
    av_dist = mm.average_points_dist(p0, [p1, p2, p3])
    assert av_dist == 1.0
예제 #2
0
def test_average_points_dist():
    p0 = Point(0.0, 0.0, 0.0, 3.0, 1)
    p1 = Point(0.0, 0.0, 1.0, 3.0, 1)
    p2 = Point(0.0, 1.0, 0.0, 3.0, 1)
    p3 = Point(1.0, 0.0, 0.0, 3.0, 1)
    av_dist = mm.average_points_dist(p0, [p1, p2, p3])
    nt.ok_(av_dist == 1.0)
예제 #3
0
 def __init__(self, points):
     super(SomaSimpleContour, self).__init__(points)
     points = np.array(self._points)
     self.radius = morphmath.average_points_dist(self.center,
                                                 points[:, COLS.XYZ])
예제 #4
0
파일: _soma.py 프로젝트: BlueBrain/NeuroM
 def __init__(self, points):
     super(SomaSimpleContour, self).__init__(points)
     points = np.array(self._points)
     self.radius = morphmath.average_points_dist(
         self.center, points[:, COLS.XYZ])
예제 #5
0
파일: _soma.py 프로젝트: nagyistge/NeuroM
 def __init__(self, points):
     super(SomaThreePoint, self).__init__(points)
     self.radius = morphmath.average_points_dist(points[0], (points[1],
                                                             points[2]))
예제 #6
0
파일: _soma.py 프로젝트: ZeitgeberH/NeuroM
 def __init__(self, points):
     """Initialize a SomaSimpleContour object."""
     super().__init__(points)
     points = np.array(self._points)
     self.radius = morphmath.average_points_dist(
         self.center, points[:, COLS.XYZ])
예제 #7
0
파일: _soma.py 프로젝트: jdcourcol/NeuroM
 def __init__(self, points):
     super(SomaThreePoint, self).__init__(points)
     self.radius = average_points_dist(points[0], (points[1], points[2]))
예제 #8
0
 def __init__(self, morphio_soma):
     """Initialize a SomaSimpleContour object."""
     super().__init__(morphio_soma)
     self.radius = morphmath.average_points_dist(self.center,
                                                 self.points[:, COLS.XYZ])