Changeset 499


Ignore:
Timestamp:
04/27/16 16:57:46 (8 years ago)
Author:
Maciej Komosinski
Message:

Fixed typos

File:
1 edited

Legend:

Unmodified
Added
Removed
  • blender-povray-animation/frams-pov-import.py

    r498 r499  
    55    "location": "File > Import-Export",
    66    "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",
    88    "wiki_url": "http://www.framsticks.com/3d-animations-in-blender"
    99}
     
    140140# create an object containing reference to blender cylinder object
    141141class cylindre:
    142     def __init__(self,nom='cylindreModele',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):
    143143          me=bpy.data.meshes.new(name=nom)
    144144          r=[r1,r2]
     
    298298
    299299class FramsticksPOVImporter(bpy.types.Operator, ImportHelper):
    300     """Load a Framstick POV files collection"""
     300    """Load a collection of Framsticks POV files"""
    301301    bl_idname = "framspov.import"
    302302    bl_label = "Import Framsticks POV"
Note: See TracChangeset for help on using the changeset viewer.