Changeset 499
- Timestamp:
- 04/27/16 16:57:46 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
blender-povray-animation/frams-pov-import.py
r498 r499 5 5 "location": "File > Import-Export", 6 6 "category": "Import-Export", 7 "description": "Imports Framsticks' generated POV-Ray files, exports Blender camera to POV-Ray",7 "description": "Imports POV-Ray files generated by Framsticks and exports Blender camera to POV-Ray files", 8 8 "wiki_url": "http://www.framsticks.com/3d-animations-in-blender" 9 9 } … … 140 140 # create an object containing reference to blender cylinder object 141 141 class cylindre: 142 def __init__(self,nom='cylind reModele',type='cyl',r1=0.1, r2=0.1,h=1.0, n=8,smooth=1):142 def __init__(self,nom='cylinderModel',type='cyl',r1=0.1, r2=0.1,h=1.0, n=8,smooth=1): 143 143 me=bpy.data.meshes.new(name=nom) 144 144 r=[r1,r2] … … 298 298 299 299 class FramsticksPOVImporter(bpy.types.Operator, ImportHelper): 300 """Load a Framstick POV files collection"""300 """Load a collection of Framsticks POV files""" 301 301 bl_idname = "framspov.import" 302 302 bl_label = "Import Framsticks POV"
Note: See TracChangeset
for help on using the changeset viewer.