summarylogtreecommitdiffstats
path: root/np-float.patch
blob: c0acb9a71467a1cbf027bd2885c9ba7df0c92e3b (plain)
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
diff --color -ruN ../NURBS-Python-5.3.1-clone/geomdl/visualization/VisMPL.py ./geomdl/visualization/VisMPL.py
--- ../NURBS-Python-5.3.1-clone/geomdl/visualization/VisMPL.py 2023-10-01 13:28:01.284096807 +0200
+++ ./geomdl/visualization/VisMPL.py   2023-10-01 13:28:40.233660486 +0200
@@ -68,7 +68,7 @@
 
     def __init__(self, **kwargs):
         super(VisConfig, self).__init__(**kwargs)
-        self.dtype = np.float
+        self.dtype = float
         self.display_ctrlpts = kwargs.get('ctrlpts', True)
         self.display_evalpts = kwargs.get('evalpts', True)
         self.display_bbox = kwargs.get('bbox', False)
diff --color -ruN ../NURBS-Python-5.3.1-clone/geomdl/visualization/VisPlotly.py ./geomdl/visualization/VisPlotly.py
--- ../NURBS-Python-5.3.1-clone/geomdl/visualization/VisPlotly.py  2023-10-01 13:28:01.284096807 +0200
+++ ./geomdl/visualization/VisPlotly.py    2023-10-01 13:28:40.240327074 +0200
@@ -58,7 +58,7 @@
     """
     def __init__(self, **kwargs):
         super(VisConfig, self).__init__(**kwargs)
-        self.dtype = np.float
+        self.dtype = float
         # Set Plotly custom variables
         self.figure_image_filename = "temp-plot.html"
         self.use_renderer = kwargs.get("use_renderer", False)
diff --color -ruN ../NURBS-Python-5.3.1-clone/geomdl/visualization/VisVTK.py ./geomdl/visualization/VisVTK.py
--- ../NURBS-Python-5.3.1-clone/geomdl/visualization/VisVTK.py 2023-10-01 13:28:01.284096807 +0200
+++ ./geomdl/visualization/VisVTK.py   2023-10-01 13:28:40.236993780 +0200
@@ -132,10 +132,10 @@
             # Plot control points
             if plot['type'] == 'ctrlpts' and self.vconf.display_ctrlpts:
                 # Points as spheres
-                pts = np.array(plot['ptsarr'], dtype=np.float)
+                pts = np.array(plot['ptsarr'], dtype=float)
                 # Handle 2-dimensional data
                 if pts.shape[1] == 2:
-                    pts = np.c_[pts, np.zeros(pts.shape[0], dtype=np.float)]
+                    pts = np.c_[pts, np.zeros(pts.shape[0], dtype=float)]
                 vtkpts = numpy_to_vtk(pts, deep=False, array_type=VTK_FLOAT)
                 vtkpts.SetName(plot['name'])
                 actor1 = vtkh.create_actor_pts(pts=vtkpts, color=vtkh.create_color(plot['color']),
@@ -148,10 +148,10 @@
 
             # Plot evaluated points
             if plot['type'] == 'evalpts' and self.vconf.display_evalpts:
-                pts = np.array(plot['ptsarr'], dtype=np.float)
+                pts = np.array(plot['ptsarr'], dtype=float)
                 # Handle 2-dimensional data
                 if pts.shape[1] == 2:
-                    pts = np.c_[pts, np.zeros(pts.shape[0], dtype=np.float)]
+                    pts = np.c_[pts, np.zeros(pts.shape[0], dtype=float)]
                 vtkpts = numpy_to_vtk(pts, deep=False, array_type=VTK_FLOAT)
                 vtkpts.SetName(plot['name'])
                 actor1 = vtkh.create_actor_polygon(pts=vtkpts, color=vtkh.create_color(plot['color']),
@@ -200,7 +200,7 @@
                 vertices = [v.data for v in plot['ptsarr'][0]]
                 faces = [q.data for q in plot['ptsarr'][1]]
                 # Points as spheres
-                pts = np.array(vertices, dtype=np.float)
+                pts = np.array(vertices, dtype=float)
                 vtkpts = numpy_to_vtk(pts, deep=False, array_type=VTK_FLOAT)
                 vtkpts.SetName(plot['name'])
                 actor1 = vtkh.create_actor_pts(pts=vtkpts, color=vtkh.create_color(plot['color']),
@@ -226,7 +226,7 @@
             # Plot trim curves
             if self.vconf.display_trims:
                 if plot['type'] == 'trimcurve':
-                    pts = np.array(plot['ptsarr'], dtype=np.float)
+                    pts = np.array(plot['ptsarr'], dtype=float)
                     vtkpts = numpy_to_vtk(pts, deep=False, array_type=VTK_FLOAT)
                     vtkpts.SetName(plot['name'])
                     actor1 = vtkh.create_actor_polygon(pts=vtkpts, color=vtkh.create_color(plot['color']),
@@ -269,7 +269,7 @@
             # Plot control points
             if plot['type'] == 'ctrlpts' and self.vconf.display_ctrlpts:
                 # Points as spheres
-                pts = np.array(plot['ptsarr'], dtype=np.float)
+                pts = np.array(plot['ptsarr'], dtype=float)
                 vtkpts = numpy_to_vtk(pts, deep=False, array_type=VTK_FLOAT)
                 vtkpts.SetName(plot['name'])
                 temp_actor = vtkh.create_actor_pts(pts=vtkpts, color=vtkh.create_color(plot['color']),
@@ -278,7 +278,7 @@
 
             # Plot evaluated points
             if plot['type'] == 'evalpts' and self.vconf.display_evalpts:
-                pts = np.array(plot['ptsarr'], dtype=np.float)
+                pts = np.array(plot['ptsarr'], dtype=float)
                 vtkpts = numpy_to_vtk(pts, deep=False, array_type=VTK_FLOAT)
                 vtkpts.SetName(plot['name'])
                 temp_actor = vtkh.create_actor_pts(pts=vtkpts, color=vtkh.create_color(plot['color']),
@@ -321,7 +321,7 @@
             # Plot control points
             if plot['type'] == 'ctrlpts' and self.vconf.display_ctrlpts:
                 # Points as spheres
-                pts = np.array(plot['ptsarr'], dtype=np.float)
+                pts = np.array(plot['ptsarr'], dtype=float)
                 vtkpts = numpy_to_vtk(pts, deep=False, array_type=VTK_FLOAT)
                 vtkpts.SetName(plot['name'])
                 temp_actor = vtkh.create_actor_pts(pts=vtkpts, color=vtkh.create_color(plot['color']),
@@ -330,7 +330,7 @@
 
             # Plot evaluated points
             if plot['type'] == 'evalpts' and self.vconf.display_evalpts:
-                faces = np.array(plot['ptsarr'][1], dtype=np.float)
+                faces = np.array(plot['ptsarr'][1], dtype=float)
                 filled = np.array(plot['ptsarr'][2], dtype=np.int)
                 grid_filled = faces[filled == 1]
                 temp_actor = vtkh.create_actor_hexahedron(grid=grid_filled, color=vtkh.create_color(plot['color']),