forked from 541435721/myVTKPythonLibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrotatePoints.py
More file actions
43 lines (31 loc) · 1.33 KB
/
rotatePoints.py
File metadata and controls
43 lines (31 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#coding=utf8
########################################################################
### ###
### Created by Martin Genet, 2012-2016 ###
### ###
### University of California at San Francisco (UCSF), USA ###
### Swiss Federal Institute of Technology (ETH), Zurich, Switzerland ###
### École Polytechnique, Palaiseau, France ###
### ###
########################################################################
import numpy
import vtk
import myVTKPythonLibrary as myVTK
########################################################################
def rotatePoints(
old_points,
C,
R,
verbose=1):
myVTK.myPrint(verbose, "*** rotatePoints ***")
n_points = old_points.GetNumberOfPoints()
new_points = vtk.vtkPoints()
new_points.SetNumberOfPoints(n_points)
old_point = numpy.empty(3)
for k_point in xrange(n_points):
old_points.GetPoint(k_point, old_point)
#print old_point
new_point = C + numpy.dot(R, old_point - C)
#print new_point
new_points.InsertPoint(k_point, new_point)
return new_points