@@ -22,17 +22,17 @@ PhysioMotion4D provides comprehensive USD conversion capabilities:
2222* **Anatomical Materials **: Organ-specific material painting
2323* **Time-Varying Geometry **: 4D animation support
2424
25- All converters inherit from :class: `ConvertVTK4DToUSDBase `.
25+ All converters inherit from :class: `ConvertVTKToUSDBase `.
2626
2727Base Converter Class
2828====================
2929
30- ConvertVTK4DToUSDBase
30+ ConvertVTKToUSDBase
3131---------------------
3232
3333Abstract base class for USD conversion.
3434
35- .. autoclass :: physiomotion4d.ConvertVTK4DToUSDBase
35+ .. autoclass :: physiomotion4d.ConvertVTKToUSDBase
3636 :members:
3737 :undoc-members:
3838 :show-inheritance:
@@ -51,7 +51,7 @@ Polygon Mesh Converter
5151
5252Convert surface meshes (VTK PolyData) to USD.
5353
54- .. autoclass :: physiomotion4d.ConvertVTK4DToUSDPolyMesh
54+ .. autoclass :: physiomotion4d.ConvertVTKToUSDPolyMesh
5555 :members:
5656 :undoc-members:
5757 :show-inheritance:
@@ -66,10 +66,10 @@ Convert surface meshes (VTK PolyData) to USD.
6666
6767.. code-block :: python
6868
69- from physiomotion4d import ConvertVTK4DToUSDPolyMesh
69+ from physiomotion4d import ConvertVTKToUSDPolyMesh
7070
7171 # Initialize converter
72- converter = ConvertVTK4DToUSDPolyMesh (
72+ converter = ConvertVTKToUSDPolyMesh (
7373 start_time = 0 ,
7474 end_time = 1.0 ,
7575 fps = 30 ,
@@ -137,7 +137,7 @@ Tetrahedral Mesh Converter
137137
138138Convert volumetric meshes (VTK UnstructuredGrid) to USD.
139139
140- .. autoclass :: physiomotion4d.ConvertVTK4DToUSDTetMesh
140+ .. autoclass :: physiomotion4d.ConvertVTKToUSDTetMesh
141141 :members:
142142 :undoc-members:
143143 :show-inheritance:
@@ -152,10 +152,10 @@ Convert volumetric meshes (VTK UnstructuredGrid) to USD.
152152
153153.. code-block :: python
154154
155- from physiomotion4d import ConvertVTK4DToUSDTetMesh
155+ from physiomotion4d import ConvertVTKToUSDTetMesh
156156
157157 # Initialize for tetrahedral meshes
158- converter = ConvertVTK4DToUSDTetMesh (verbose = True )
158+ converter = ConvertVTKToUSDTetMesh (verbose = True )
159159
160160 # Convert volumetric mesh
161161 converter.convert(
@@ -263,10 +263,10 @@ Create animated USD files from 4D VTK sequences:
263263
264264.. code-block :: python
265265
266- from physiomotion4d import ConvertVTK4DToUSD
266+ from physiomotion4d import ConvertVTKToUSD
267267
268268 # Initialize with timing
269- converter = ConvertVTK4DToUSD (
269+ converter = ConvertVTKToUSD (
270270 start_time = 0.0 ,
271271 end_time = 2.0 , # 2 second animation
272272 fps = 30 , # 30 frames per second
@@ -290,7 +290,7 @@ Control temporal resolution:
290290.. code-block :: python
291291
292292 # High temporal resolution
293- converter = ConvertVTK4DToUSD (
293+ converter = ConvertVTKToUSD (
294294 start_time = 0 ,
295295 end_time = 1.0 ,
296296 fps = 60 # Smooth animation
@@ -300,7 +300,7 @@ Control temporal resolution:
300300 num_frames = len (vtk_files)
301301 cycle_duration = 1.0 # 1 second cardiac cycle
302302
303- converter = ConvertVTK4DToUSD (
303+ converter = ConvertVTKToUSD (
304304 start_time = 0 ,
305305 end_time = cycle_duration,
306306 fps = num_frames / cycle_duration
@@ -316,9 +316,9 @@ Visualize scalar data on meshes:
316316
317317.. code-block :: python
318318
319- from physiomotion4d import ConvertVTK4DToUSDPolyMesh
319+ from physiomotion4d import ConvertVTKToUSDPolyMesh
320320
321- converter = ConvertVTK4DToUSDPolyMesh ()
321+ converter = ConvertVTKToUSDPolyMesh ()
322322
323323 # Available colormaps
324324 colormaps = [
@@ -423,7 +423,7 @@ Create multi-resolution meshes:
423423
424424.. code-block :: python
425425
426- class LODConverter (ConvertVTK4DToUSDPolyMesh ):
426+ class LODConverter (ConvertVTKToUSDPolyMesh ):
427427 """ Converter with LOD support."""
428428
429429 def create_lod_mesh (self , vtk_file , usd_file , lod_levels ):
@@ -508,7 +508,7 @@ Convert multiple files efficiently:
508508
509509 def batch_convert_to_usd (vtk_dir , usd_dir , num_workers = 4 ):
510510 """ Convert multiple VTK files to USD in parallel."""
511- converter = ConvertVTK4DToUSDPolyMesh ()
511+ converter = ConvertVTKToUSDPolyMesh ()
512512
513513 vtk_files = list (Path(vtk_dir).glob(" *.vtk" ))
514514
0 commit comments