Author: JonNeal Date: 2008-02-16 21:27:56 -0500 (Sat, 16 Feb 2008) New Revision: 914
Modified: trunk/pysoy/src/_core/Screen-w32.pxi trunk/pysoy/src/_core/Screen-x11.pxi trunk/pysoy/src/_core/Window-w32.pxi trunk/pysoy/src/_core/Window-x11.pxi trunk/pysoy/src/_datatypes/BoneList.pxi trunk/pysoy/src/_datatypes/Datatype.pxi trunk/pysoy/src/_datatypes/FaceList.pxi trunk/pysoy/src/_datatypes/HashTable.pxi trunk/pysoy/src/_datatypes/MaterialList.pxi trunk/pysoy/src/_datatypes/VertexList.pxi trunk/pysoy/src/_internals/AsyncQueue.pxi trunk/pysoy/src/_internals/Children.pxi trunk/pysoy/src/_internals/Loadable.pxi trunk/pysoy/src/_internals/PointerSet.pxi trunk/pysoy/src/actions/Action.pxi trunk/pysoy/src/actions/Force.pxi trunk/pysoy/src/actions/Quit.pxi trunk/pysoy/src/actions/Stdout.pxi trunk/pysoy/src/atoms/Face.pxi trunk/pysoy/src/atoms/Vertex.pxi trunk/pysoy/src/bodies._bodies/Body.pxi trunk/pysoy/src/bodies._bodies/Bone.pxi trunk/pysoy/src/bodies._bodies/Camera.pxi trunk/pysoy/src/bodies.fields/Buoyancy.pxi trunk/pysoy/src/bodies.fields/Field.pxi trunk/pysoy/src/bodies.fields/Monopole.pxi trunk/pysoy/src/bodies.fields/Shockwave.pxi trunk/pysoy/src/bodies.fields/Wind.pxi trunk/pysoy/src/bodies.lights/Light.pxi trunk/pysoy/src/colors/Color.pxi trunk/pysoy/src/controllers/Controller.pxi trunk/pysoy/src/controllers/Keyboard.pxi trunk/pysoy/src/controllers/Keyboard2.pxi trunk/pysoy/src/controllers/Window.pxi trunk/pysoy/src/joints/Ball.pxi trunk/pysoy/src/joints/Fixed.pxi trunk/pysoy/src/joints/Hinge.pxi trunk/pysoy/src/joints/Hinge2.pxi trunk/pysoy/src/joints/Joint.pxi trunk/pysoy/src/joints/Piston.pxi trunk/pysoy/src/joints/Slider.pxi trunk/pysoy/src/joints/Universal.pxi trunk/pysoy/src/materials/Material.pxi trunk/pysoy/src/meshes/Mesh.pxi trunk/pysoy/src/meshes/Shape.pxi trunk/pysoy/src/scenes/Scene.pxi trunk/pysoy/src/shapes/Box.pxi trunk/pysoy/src/shapes/Capsule.pxi trunk/pysoy/src/shapes/Ray.pxi trunk/pysoy/src/shapes/Shape.pxi trunk/pysoy/src/shapes/Sphere.pxi trunk/pysoy/src/textures/Image.pxi trunk/pysoy/src/textures/Print.pxi trunk/pysoy/src/textures/Texture.pxi trunk/pysoy/src/textures/Video.pxi trunk/pysoy/src/widgets/Canvas.pxi trunk/pysoy/src/widgets/Projector.pxi trunk/pysoy/src/widgets/StackX.pxi trunk/pysoy/src/widgets/StackY.pxi trunk/pysoy/src/widgets/StackZ.pxi trunk/pysoy/src/widgets/Widget.pxi Log: normalized docs indentation Modified: trunk/pysoy/src/_core/Screen-w32.pxi =================================================================== --- trunk/pysoy/src/_core/Screen-w32.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/_core/Screen-w32.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -27,10 +27,10 @@ cdef class Screen : '''Screen Class - An instance of this class for every useable screen is added to - soy.screens when PySoy is first imported. + An instance of this class for every useable screen is added to + soy.screens when PySoy is first imported. - Screen objects may only be created and destroyed by soy.screens + Screen objects may only be created and destroyed by soy.screens ''' def __cinit__(self, sId=-1) : if type(sId) == int and sId == 0 or sId == -1: Modified: trunk/pysoy/src/_core/Screen-x11.pxi =================================================================== --- trunk/pysoy/src/_core/Screen-x11.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/_core/Screen-x11.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -28,10 +28,10 @@ cdef class Screen : '''Screen Class - An instance of this class for every useable screen is added to - soy.screens when PySoy is first imported. + An instance of this class for every useable screen is added to + soy.screens when PySoy is first imported. - Screen objects may only be created and destroyed by soy.screens + Screen objects may only be created and destroyed by soy.screens ''' def __cinit__(self, sId=-1) : cdef int i, _modeNum Modified: trunk/pysoy/src/_core/Window-w32.pxi =================================================================== --- trunk/pysoy/src/_core/Window-w32.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/_core/Window-w32.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -35,7 +35,7 @@ cdef class Window : '''Window Class - Each instance of this class is a separate window. + Each instance of this class is a separate window. ''' def __cinit__(self, screen, title='', icon=None, background=None, @@ -237,7 +237,7 @@ This is the "title" of the window, typically displayed at the top of the window in a decorated area. It may also appear in other places based on the window manager being used. - + Accepts any string value, defaults to an empty string. ''' def __get__(self) : Modified: trunk/pysoy/src/_core/Window-x11.pxi =================================================================== --- trunk/pysoy/src/_core/Window-x11.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/_core/Window-x11.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -35,7 +35,7 @@ cdef class Window : '''Window Class - Each instance of this class is a separate window. + Each instance of this class is a separate window. ''' def __cinit__(self, screen, title='', icon=None, background=None, Modified: trunk/pysoy/src/_datatypes/BoneList.pxi =================================================================== --- trunk/pysoy/src/_datatypes/BoneList.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/_datatypes/BoneList.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -22,7 +22,7 @@ cdef class BoneList : '''PySoy BoneList - This is a list-like container class for bones. + This is a list-like container class for bones. ''' # This class is not intended to be stored or transfered on it's own but Modified: trunk/pysoy/src/_datatypes/Datatype.pxi =================================================================== --- trunk/pysoy/src/_datatypes/Datatype.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/_datatypes/Datatype.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -22,7 +22,7 @@ cdef class Datatype : '''PySoy Datatype - This is not useful to you. It provides C functions to other datatypes. + This is not useful to you. It provides C functions to other datatypes. ''' cdef void *_alloc(self, int num, int* m, void* store, int size) : if num == 0 : Modified: trunk/pysoy/src/_datatypes/FaceList.pxi =================================================================== --- trunk/pysoy/src/_datatypes/FaceList.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/_datatypes/FaceList.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -20,7 +20,7 @@ cdef class FaceList (Datatype) : '''PySoy FaceList - This is a list-like container class for the faces of a soy.bodies.Mesh + This is a list-like container class for the faces of a soy.bodies.Mesh ''' def __cinit__(self, mesh) : if not isinstance(mesh, soy.meshes.Mesh) : Modified: trunk/pysoy/src/_datatypes/HashTable.pxi =================================================================== --- trunk/pysoy/src/_datatypes/HashTable.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/_datatypes/HashTable.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -20,7 +20,7 @@ cdef class HashTable : '''GLib GHashTable - wrapped to allow ease of use by other PySoy classes. + wrapped to allow ease of use by other PySoy classes. ''' def __cinit__(self) : self._hashtable = glib.g_hash_table_new_full(glib.g_str_hash, glib.g_str_equal, glib.g_free, glib.g_free) Modified: trunk/pysoy/src/_datatypes/MaterialList.pxi =================================================================== --- trunk/pysoy/src/_datatypes/MaterialList.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/_datatypes/MaterialList.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -24,7 +24,7 @@ cdef class MaterialList (Datatype) : '''PySoy MaterialList - This is a list-like container class for materials used by a mesh + This is a list-like container class for materials used by a mesh ''' def __cinit__(self, mesh) : if not isinstance(mesh, soy.meshes.Mesh) : Modified: trunk/pysoy/src/_datatypes/VertexList.pxi =================================================================== --- trunk/pysoy/src/_datatypes/VertexList.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/_datatypes/VertexList.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -24,7 +24,7 @@ cdef class VertexList (Datatype) : '''PySoy VertexList - This is a list-like container class for shared vertices. + This is a list-like container class for shared vertices. ''' def __cinit__(self, mesh) : if not isinstance(mesh, soy.meshes.Mesh) : Modified: trunk/pysoy/src/_internals/AsyncQueue.pxi =================================================================== --- trunk/pysoy/src/_internals/AsyncQueue.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/_internals/AsyncQueue.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -22,7 +22,7 @@ cdef class AsyncQueue : '''GLib AsyncQueue - wrapped to allow ease of use by other PySoy classes. + wrapped to allow ease of use by other PySoy classes. ''' def __cinit__(self) : Modified: trunk/pysoy/src/_internals/Children.pxi =================================================================== --- trunk/pysoy/src/_internals/Children.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/_internals/Children.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -22,10 +22,10 @@ cdef class Children : '''PySoy Children - This is a thread-safe C array of Python objects for "Parent" classes. - It's append, index, and remove methods are identical to Python lists. - The up, down, top, bottom, and move methods move an object in the array. - The lock and unlock methods control the mutex. + This is a thread-safe C array of Python objects for "Parent" classes. + It's append, index, and remove methods are identical to Python lists. + The up, down, top, bottom, and move methods move an object in the array. + The lock and unlock methods control the mutex. ''' def __cinit__(self) : Modified: trunk/pysoy/src/_internals/Loadable.pxi =================================================================== --- trunk/pysoy/src/_internals/Loadable.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/_internals/Loadable.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -22,7 +22,7 @@ cdef class Loadable : '''PySoy Loadable - This should be inherited by any PySoy class which can be loaded or saved. + This should be inherited by any PySoy class which can be loaded or saved. ''' def __cinit__(self, source=None, *args, **keywords) : self._source = source Modified: trunk/pysoy/src/_internals/PointerSet.pxi =================================================================== --- trunk/pysoy/src/_internals/PointerSet.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/_internals/PointerSet.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -20,7 +20,7 @@ cdef class PointerSet : '''Store a distinct list of pointers - Uses GLib HashTables. + Uses GLib HashTables. ''' def __cinit__(self) : self._hashtable = glib.g_hash_table_new(glib.g_direct_hash, glib.g_direct_equal) Modified: trunk/pysoy/src/actions/Action.pxi =================================================================== --- trunk/pysoy/src/actions/Action.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/actions/Action.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -20,9 +20,8 @@ cdef class Action : '''PySoy Action - This is the base Action class which all actions must inherit. - - It serves no other function. + This is the base Action class which all actions must inherit. + It serves no other function. ''' def __repr__(self) : return '<Action>' Modified: trunk/pysoy/src/actions/Force.pxi =================================================================== --- trunk/pysoy/src/actions/Force.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/actions/Force.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -20,9 +20,8 @@ cdef class Force (Action) : '''PySoy Force - Adds velocity to it's target. - - First argument is the force's target, an instance of soy.bodies.Body. + Adds velocity to it's target. + First argument is the force's target, an instance of soy.bodies.Body. ''' def __cinit__(self, target, xforce, yforce, zforce, *args, **kw) : if not isinstance(target, soy.bodies._bodies.Body) : Modified: trunk/pysoy/src/actions/Quit.pxi =================================================================== --- trunk/pysoy/src/actions/Quit.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/actions/Quit.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -20,9 +20,8 @@ cdef class Quit (Action) : '''PySoy Quit - When called PySoy will quit. There are no arguments to this class. - - See soy.actions.Action for more information. + When called PySoy will quit. There are no arguments to this class. + See soy.actions.Action for more information. ''' def __repr__(self) : return '<Quit>' Modified: trunk/pysoy/src/actions/Stdout.pxi =================================================================== --- trunk/pysoy/src/actions/Stdout.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/actions/Stdout.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -21,9 +21,7 @@ '''PySoy Print When called PySoy will print to stdout. There is an argument for what text to print. - - See soy.actions.Action for more information. - + See soy.actions.Action for more information. ''' def __cinit__(self,text,*args, **kw) : self.text = text @@ -31,4 +29,4 @@ return '<Print>' cdef void _perform(self, unsigned int _duration) : - stdio.printf("%s\n",self.text) \ No newline at end of file + stdio.printf("%s\n",self.text) Modified: trunk/pysoy/src/atoms/Face.pxi =================================================================== --- trunk/pysoy/src/atoms/Face.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/atoms/Face.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -20,7 +20,7 @@ cdef class Face : '''PySoy Face - An element of FaceList with .verts property + An element of FaceList with .verts property ''' def __cinit__(self, soy.meshes.Mesh mesh, verts=None, material=None, Modified: trunk/pysoy/src/atoms/Vertex.pxi =================================================================== --- trunk/pysoy/src/atoms/Vertex.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/atoms/Vertex.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -20,7 +20,7 @@ cdef class Vertex : '''PySoy Vertex - An element of VertexList with .position .normal and .texcoord properties + An element of VertexList with .position .normal and .texcoord properties ''' def __cinit__(self, soy.meshes.Mesh mesh, position=None, normal=None, texcoord=None, tangent=None, Modified: trunk/pysoy/src/bodies._bodies/Body.pxi =================================================================== --- trunk/pysoy/src/bodies._bodies/Body.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/bodies._bodies/Body.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -23,8 +23,8 @@ cdef class Body : '''PySoy Body - Bodies are generic objects in 3d space with a position, velocity, - mass. Joints an shapes can be applied to them to govern movement. + Bodies are generic objects in 3d space with a position, velocity, + mass. Joints an shapes can be applied to them to govern movement. ''' def __cinit__(self, scene=None, @@ -130,7 +130,7 @@ property tags : '''Body's tags - This is the body's tagset. + This is the body's tagset. ''' def __get__(self) : return self._tags @@ -138,7 +138,7 @@ property mass : '''Body's mass - This is the mass of the body in the scene. Effects physics. + This is the mass of the body in the scene. Effects physics. ''' def __get__(self) : Modified: trunk/pysoy/src/bodies._bodies/Bone.pxi =================================================================== --- trunk/pysoy/src/bodies._bodies/Bone.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/bodies._bodies/Bone.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -21,7 +21,7 @@ cdef class Bone(Body) : '''PySoy Bones - This is an element of soy.bodies.Mesh.armature + This is an element of soy.bodies.Mesh.armature ''' # def _new_(self, object scene=None, *args, **keywords) : # self._mesh = #the mesh it's part of Modified: trunk/pysoy/src/bodies._bodies/Camera.pxi =================================================================== --- trunk/pysoy/src/bodies._bodies/Camera.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/bodies._bodies/Camera.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -20,9 +20,9 @@ cdef class Camera(Body) : '''PySoy Camera - A camera is an invisible object in 3d space through which the scene can - be rendered through. It must be attached to a soy.widgets.Projector or - other rendering class to be activated. + A camera is an invisible object in 3d space through which the scene can + be rendered through. It must be attached to a soy.widgets.Projector or + other rendering class to be activated. ''' def __cinit__(self, soy.scenes.Scene parent, wireframe=0, *args, **keywords) : @@ -104,21 +104,30 @@ self._fovy = value property direction : - '''Direction in which camera is looking''' + '''Camera Direction + + Direction in which camera is looking + ''' def __get__(self) : cdef ode.dReal *rot rot = <ode.dReal *> ode.dBodyGetRotation(self._bodyID) return ( rot[2], rot[6], rot[10] ) property right : - '''Direction of the 'right' side of the camera''' + '''Camera Right + + Direction of the 'right' side of the camera + ''' def __get__(self): cdef ode.dReal *rot rot = <ode.dReal *> ode.dBodyGetRotation(self._bodyID) return ( rot[0], rot[4], rot[8] ) property up : - '''Direction of the up vector of the camera''' + '''Camera Up + + Direction of the up vector of the camera + ''' def __get__(self): cdef ode.dReal *rot rot = <ode.dReal *> ode.dBodyGetRotation(self._bodyID) Modified: trunk/pysoy/src/bodies.fields/Buoyancy.pxi =================================================================== --- trunk/pysoy/src/bodies.fields/Buoyancy.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/bodies.fields/Buoyancy.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -20,7 +20,7 @@ cdef class Buoyancy(soy.bodies.fields.Field) : '''PySoy Bouyancy - Adjusts the mass Monopole works based on + Adjusts the mass Monopole works based on ''' def __cinit__(self, soy.scenes.Scene parent, *args, **keywords) : @@ -55,8 +55,9 @@ return 1 property density : - '''Density of the bouyant fluid - + '''Buoyancy Density + + Density of the bouyant fluid ''' def __get__(self) : return self._density Modified: trunk/pysoy/src/bodies.fields/Field.pxi =================================================================== --- trunk/pysoy/src/bodies.fields/Field.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/bodies.fields/Field.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -20,8 +20,8 @@ cdef class Field(soy.bodies._bodies.Body) : '''PySoy Field - Fields are optionally visible generic objects in 3d space that apply - forces and other changes to other bodies. + Fields are optionally visible generic objects in 3d space that apply + forces and other changes to other bodies. ''' cdef int _apply(self) : Modified: trunk/pysoy/src/bodies.fields/Monopole.pxi =================================================================== --- trunk/pysoy/src/bodies.fields/Monopole.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/bodies.fields/Monopole.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -20,8 +20,8 @@ cdef class Monopole(soy.bodies.fields.Field) : '''PySoy Monopole - Monopoles are invisible fields that either attract or repulse other - bodies in the entire scene based on an inverse square law. + Monopoles are invisible fields that either attract or repulse other + bodies in the entire scene based on an inverse square law. ''' def __cinit__(self, soy.scenes.Scene parent, *args, **keywords) : @@ -71,7 +71,7 @@ property multiplier : '''Monopole's multiplier - This is how much force will be applied. + This is how much force will be applied. ''' def __get__(self) : return self._multiplier Modified: trunk/pysoy/src/bodies.fields/Shockwave.pxi =================================================================== --- trunk/pysoy/src/bodies.fields/Shockwave.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/bodies.fields/Shockwave.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -20,7 +20,7 @@ cdef class Shockwave(soy.bodies.fields.Field) : '''PySoy Shockwave - Models an constant-rate expanding shockwave + Models an constant-rate expanding shockwave ''' def __cinit__(self, soy.scenes.Scene parent, *args, **keywords) : @@ -89,8 +89,10 @@ stdio.printf("activate done\n") property velocity : - '''Velocity of the shock wave - Units: units/second + '''Shockwave Velocity + + Velocity of the shock wave + Units: units/second ''' def __get__(self) : return self._velocity @@ -98,9 +100,10 @@ self._velocity = value property energy : - '''Total energy of the shock wave - - Units: joules + '''Shockwave Energy + + Total energy of the shock wave + Units: joules ''' def __get__(self) : return self._energy @@ -108,8 +111,9 @@ self._energy = value property radius : - '''Effective radius of the explosion - + '''Shockwave Radius + + Effective radius of the explosion ''' def __get__(self) : return self._radius @@ -117,8 +121,9 @@ self._radius = value property length : - '''Thickness of wave + '''Shockwave Length + Thickness of wave ''' def __get__(self) : return self._length Modified: trunk/pysoy/src/bodies.fields/Wind.pxi =================================================================== --- trunk/pysoy/src/bodies.fields/Wind.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/bodies.fields/Wind.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -20,7 +20,7 @@ cdef class Wind(soy.bodies.fields.Field) : '''PySoy Wind - Affects bodies according to their tags 'cd' and 'cpx','cpy','cpz' + Affects bodies according to their tags 'cd' and 'cpx','cpy','cpz' ''' def __cinit__(self, soy.scenes.Scene parent, *args, **keywords) : @@ -46,9 +46,9 @@ return 1 property vector : - '''The wind vector + '''Wind Vector - affects relative velocity of body and wind + Affects relative velocity of body and wind ''' def __get__(self) : return (self._vx, self._vy, self._vz) @@ -58,9 +58,10 @@ self._vz = value[2] property density : - '''Density of the fluid - - affects how drag is calculated + '''Wind Density + + Density of the fluid, + Affects how drag is calculated ''' def __get__(self) : return self._density Modified: trunk/pysoy/src/bodies.lights/Light.pxi =================================================================== --- trunk/pysoy/src/bodies.lights/Light.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/bodies.lights/Light.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -20,7 +20,7 @@ cdef class Light (soy.bodies._bodies.Body) : '''PySoy Light - Lights provide illumination in your scene. Needs more work. + Lights provide illumination in your scene. Needs more work. ''' def __cinit__(self, object scene=None, *args, **keywords) : @@ -64,8 +64,8 @@ This is the Scene that the light is in. When changed the body's position, orientation, velocity, and rotation are all reset to (0,0,0). - It has be overridden from Body's method and altered to let the light be - added to the more specific _lights Children object. + It has be overridden from Body's method and altered to let the light be + added to the more specific _lights Children object. ''' def __get__(self) : if self._isActive() : Modified: trunk/pysoy/src/colors/Color.pxi =================================================================== --- trunk/pysoy/src/colors/Color.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/colors/Color.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -20,7 +20,7 @@ cdef class Color : '''PySoy Color - This is the base Color class. + This is the base Color class. ''' def __init__(self, hex=None, floats=None) : if hex : Modified: trunk/pysoy/src/controllers/Controller.pxi =================================================================== --- trunk/pysoy/src/controllers/Controller.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/controllers/Controller.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -20,7 +20,7 @@ cdef class Controller : '''PySoy Controller - This is the base Controller class which all controllers must inherit. + This is the base Controller class which all controllers must inherit. ''' def __repr__(self) : return '<Controller>' Modified: trunk/pysoy/src/controllers/Keyboard.pxi =================================================================== --- trunk/pysoy/src/controllers/Keyboard.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/controllers/Keyboard.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -20,18 +20,18 @@ cdef class Keyboard (Controller) : '''PySoy controllers.Keyboard - This controller responds to selected keyboard input from a soy.Window. + This controller responds to selected keyboard input from a soy.Window. - This controller can be programmed with both keycodes and symbols. This - allows you to program for either physical keys, such as when using - letters as arrow keys, or the keymapped keys for typing. + This controller can be programmed with both keycodes and symbols. This + allows you to program for either physical keys, such as when using + letters as arrow keys, or the keymapped keys for typing. - Keycodes are set as type int, symbols are single-character strings. - Keycode actions are given priority in the case of overlap. When - overlap is possible between keycodes and keymapped symbols it's - recommended to use two separate controllers. + Keycodes are set as type int, symbols are single-character strings. + Keycode actions are given priority in the case of overlap. When + overlap is possible between keycodes and keymapped symbols it's + recommended to use two separate controllers. - See soy.controllers.Controller for how to program controllers. + See soy.controllers.Controller for how to program controllers. ''' def __cinit__(self, window, *args, **kw) : if not isinstance(window, soy._core.Window) : Modified: trunk/pysoy/src/controllers/Keyboard2.pxi =================================================================== --- trunk/pysoy/src/controllers/Keyboard2.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/controllers/Keyboard2.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -1,18 +1,18 @@ cdef class Keyboard2 (Controller) : '''PySoy controllers.Keyboard2 - This controller responds to selected keyboard input from a soy.Window. + This controller responds to selected keyboard input from a soy.Window. - This controller can be programmed with both keycodes and symbols. This - allows you to program for either physical keys, such as when using - letters as arrow keys, or the keymapped keys for typing. + This controller can be programmed with both keycodes and symbols. This + allows you to program for either physical keys, such as when using + letters as arrow keys, or the keymapped keys for typing. - Keycodes are set as type int, symbols are single-character strings. - Keycode actions are given priority in the case of overlap. When - overlap is possible between keycodes and keymapped symbols it's - recommended to use two separate controllers. + Keycodes are set as type int, symbols are single-character strings. + Keycode actions are given priority in the case of overlap. When + overlap is possible between keycodes and keymapped symbols it's + recommended to use two separate controllers. - See soy.controllers.Controller for how to program controllers. + See soy.controllers.Controller for how to program controllers. ''' def __cinit__(self, window, *args, **kw) : if not isinstance(window, soy._core.Window) : Modified: trunk/pysoy/src/controllers/Window.pxi =================================================================== --- trunk/pysoy/src/controllers/Window.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/controllers/Window.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -20,12 +20,12 @@ cdef class Window (Controller) : '''PySoy controllers.Window - This controller responds to various soy.Window events (move, close, etc). + This controller responds to various soy.Window events (move, close, etc). - Programmable keys are currently: - 'close' + Programmable keys are currently: + 'close' - See soy.controllers.Controller for how to program controllers. + See soy.controllers.Controller for how to program controllers. ''' def __cinit__(self, window, *args, **kw) : if not isinstance(window, soy._core.Window) : Modified: trunk/pysoy/src/joints/Ball.pxi =================================================================== --- trunk/pysoy/src/joints/Ball.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/joints/Ball.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -20,7 +20,7 @@ cdef class Ball (Joint) : '''PySoy Ball Joint - a "ball and socket" joint + a "ball and socket" joint ''' def __init__(self, parent, body1, body2, position) : self._scene._joints.lock() Modified: trunk/pysoy/src/joints/Fixed.pxi =================================================================== --- trunk/pysoy/src/joints/Fixed.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/joints/Fixed.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -20,7 +20,7 @@ cdef class Fixed (Joint): '''PySoy Fixed Joint - This is a fixed joint + This is a fixed joint ''' def __init__(self, parent, body1, body2) : self._scene._joints.lock() Modified: trunk/pysoy/src/joints/Hinge.pxi =================================================================== --- trunk/pysoy/src/joints/Hinge.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/joints/Hinge.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -20,7 +20,7 @@ cdef class Hinge (Joint) : '''PySoy Hinge Joint - a hinge joint + a hinge joint ''' def __init__(self, parent, body1, body2, position, axis) : self._scene._joints.lock() @@ -87,7 +87,7 @@ property bounce : '''Hinge.bounce - bouncyness of stops, between 0.0 and 1.0 + bounciness of stops, between 0.0 and 1.0 ''' def __set__(self, bounce) : if bounce < 0.0 or bounce > 1.0 : Modified: trunk/pysoy/src/joints/Hinge2.pxi =================================================================== --- trunk/pysoy/src/joints/Hinge2.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/joints/Hinge2.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -20,7 +20,7 @@ cdef class Hinge2 (Joint) : '''PySoy Hinge2 Joint - a double hinge joint + a double hinge joint ''' def __init__(self, parent, body1, body2, position, axis1, axis2) : self._scene._joints.lock() @@ -100,7 +100,7 @@ property bounce : '''Hinge2.bounce - bouncyness of stops, between 0.0 and 1.0 + bounciness of stops, between 0.0 and 1.0 ''' def __set__(self, bounce) : if bounce < 0.0 or bounce > 1.0 : Modified: trunk/pysoy/src/joints/Joint.pxi =================================================================== --- trunk/pysoy/src/joints/Joint.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/joints/Joint.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -20,7 +20,7 @@ cdef class Joint : '''PySoy Joint - This is the "Null" joint which all other joints inherit from + This is the "Null" joint which all other joints inherit from ''' def __cinit__(self, soy.scenes.Scene parent, Modified: trunk/pysoy/src/joints/Piston.pxi =================================================================== --- trunk/pysoy/src/joints/Piston.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/joints/Piston.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -20,7 +20,7 @@ cdef class Piston (Joint) : '''PySoy Piston Joint - a piston joint aka prismatic&rotoide + a piston joint aka prismatic&rotoide ''' def __init__(self, parent, body1, body2, position, axis1, axis2) : self._scene._joints.lock() @@ -101,7 +101,7 @@ property bounce : '''Piston.bounce - bouncyness of stops, between 0.0 and 1.0 + bounciness of stops, between 0.0 and 1.0 ''' def __set__(self, bounce) : if bounce < 0.0 or bounce > 1.0 : Modified: trunk/pysoy/src/joints/Slider.pxi =================================================================== --- trunk/pysoy/src/joints/Slider.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/joints/Slider.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -20,7 +20,7 @@ cdef class Slider (Joint) : '''PySoy Slider Joint - a slider joint + a slider joint ''' def __init__(self, parent, body1, body2, axis) : self._scene._joints.lock() @@ -74,7 +74,7 @@ property bounce : '''Slider.bounce - bouncyness of stops, between 0.0 and 1.0 + bounciness of stops, between 0.0 and 1.0 ''' def __set__(self, bounce) : if bounce < 0.0 or bounce > 1.0 : Modified: trunk/pysoy/src/joints/Universal.pxi =================================================================== --- trunk/pysoy/src/joints/Universal.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/joints/Universal.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -20,7 +20,7 @@ cdef class Universal (Joint) : '''PySoy Universal Joint - a universal joint + a universal joint ''' def __init__(self, parent, body1, body2, position, axis1, axis2) : self._scene._joints.lock() @@ -101,7 +101,7 @@ property bounce : '''Universal.bounce - bouncyness of stops, between 0.0 and 1.0 + bounciness of stops, between 0.0 and 1.0 ''' def __set__(self, bounce) : if bounce < 0.0 or bounce > 1.0 : Modified: trunk/pysoy/src/materials/Material.pxi =================================================================== --- trunk/pysoy/src/materials/Material.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/materials/Material.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -26,7 +26,7 @@ cdef class Material : '''PySoy Material - shared material for many visible objects + shared material for many visible objects ''' def __cinit__(self, color=None, ambient=None, diffuse=None, specular=None, normal=None, normalisation_cube_map=None) : Modified: trunk/pysoy/src/meshes/Mesh.pxi =================================================================== --- trunk/pysoy/src/meshes/Mesh.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/meshes/Mesh.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -20,7 +20,7 @@ cdef class Mesh : '''PySoy Mesh - This is a collection of triangles which may share verticies. + This is a collection of triangles which may share verticies. ''' def __cinit__(self, *args, **keywords) : self._mates = soy._datatypes.MaterialList(self) Modified: trunk/pysoy/src/meshes/Shape.pxi =================================================================== --- trunk/pysoy/src/meshes/Shape.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/meshes/Shape.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -24,7 +24,7 @@ cdef class Shape (Mesh) : '''PySoy meshes.Shape - This mesh renders the shape of the body it belongs to. + This mesh renders the shape of the body it belongs to. ''' def __cinit__(self, material, *args, **keywords) : self.material = material Modified: trunk/pysoy/src/scenes/Scene.pxi =================================================================== --- trunk/pysoy/src/scenes/Scene.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/scenes/Scene.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -22,9 +22,9 @@ cdef class Scene : '''PySoy Scene - Scenes are containers in physics space for bodies, joints, and shapes. - Objects in different worlds cannot interact, for example, bodies in two - different worlds cannot collide. Worlds also apply gravity to bodies. + Scenes are containers in physics space for bodies, joints, and shapes. + Objects in different worlds cannot interact, for example, bodies in two + different worlds cannot collide. Worlds also apply gravity to bodies. ''' def __cinit__(self, *args, **kw) : Modified: trunk/pysoy/src/shapes/Box.pxi =================================================================== --- trunk/pysoy/src/shapes/Box.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/shapes/Box.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -20,7 +20,7 @@ cdef class Box (Shape) : '''PySoy Box - A rectangular prism shape. + A rectangular prism shape. ''' def __cinit__(self, float lx, float ly, float lz) : @@ -44,9 +44,9 @@ return 1 property dimensions : - '''Sphere's dimensions + '''Box's dimensions - This is the size of the box, (x,y,z) + This is the size of the box, (x,y,z) ''' def __get__(self) : cdef ode.dVector3 xyz Modified: trunk/pysoy/src/shapes/Capsule.pxi =================================================================== --- trunk/pysoy/src/shapes/Capsule.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/shapes/Capsule.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -20,7 +20,7 @@ cdef class Capsule (Shape) : '''PySoy Capsule - A capped cylinder shape. + A capped cylinder shape. ''' def __cinit__(self, float radius, float length) : @@ -46,7 +46,7 @@ property radius : '''Capsule's radius - This is the distance between the center and the surface + This is the distance between the center and the surface ''' def __get__(self) : cdef ode.dReal r, l @@ -61,7 +61,7 @@ property length : '''Capsule's length - This is the length, not counting the caps + This is the length, not counting the caps ''' def __get__(self) : cdef ode.dReal r, l Modified: trunk/pysoy/src/shapes/Ray.pxi =================================================================== --- trunk/pysoy/src/shapes/Ray.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/shapes/Ray.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -20,7 +20,7 @@ cdef class Ray (Shape) : '''PySoy Ray - A line or line segment in 3d space. + A line or line segment in 3d space. ''' def __cinit__(self, float length) : @@ -36,7 +36,7 @@ property length : '''Ray's length - This is the distance from the starting point of the ray and its end + This is the distance from the starting point of the ray and its end ''' def __get__(self) : return ode.dGeomRayGetLength(self._geomID) @@ -46,7 +46,7 @@ property start : '''Ray's start - The starting point, relative to the center of the associated Body + The starting point, relative to the center of the associated Body ''' def __get__(self) : cdef ode.dVector3 s, d @@ -60,7 +60,7 @@ property direction : '''Ray's direction - The normal vector of the ray (does not adjust length) + The normal vector of the ray (does not adjust length) ''' def __get__(self) : cdef ode.dVector3 s, d Modified: trunk/pysoy/src/shapes/Shape.pxi =================================================================== --- trunk/pysoy/src/shapes/Shape.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/shapes/Shape.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -22,8 +22,8 @@ cdef class Shape : '''PySoy Shape - This class gives bodies a physical presence for collision and - contains the properties required to determine surface behaviour. + This class gives bodies a physical presence for collision and + contains the properties required to determine surface behaviour. ''' def __cinit__(self, *args, **kw) : Modified: trunk/pysoy/src/shapes/Sphere.pxi =================================================================== --- trunk/pysoy/src/shapes/Sphere.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/shapes/Sphere.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -20,7 +20,7 @@ cdef class Sphere (Shape) : '''PySoy Sphere - A spherical shape class. + A spherical shape class. ''' def __cinit__(self, float radius) : @@ -42,7 +42,7 @@ property radius : '''Sphere's radius - This is the distance between the center of the sphere and it's surface + This is the distance between the center of the sphere and it's surface ''' def __get__(self) : return ode.dGeomSphereGetRadius(self._geomID) Modified: trunk/pysoy/src/textures/Image.pxi =================================================================== --- trunk/pysoy/src/textures/Image.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/textures/Image.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -20,7 +20,7 @@ cdef class Image (Texture) : '''PySoy textures.Image Class - This loads a 2D image (from PIL) as a texture + This loads a 2D image (from PIL) as a texture ''' def __cinit__(self, img, *args, **keywords) : cdef int b, c, x, y, ix, iy, tx, ty Modified: trunk/pysoy/src/textures/Print.pxi =================================================================== --- trunk/pysoy/src/textures/Print.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/textures/Print.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -20,7 +20,7 @@ cdef class Print (Texture) : '''PySoy textures.Print Class - This renders text using cairo. + This renders text using cairo. ''' def __cinit__(self, text='', font='serif', background=None, foreground=None, Modified: trunk/pysoy/src/textures/Texture.pxi =================================================================== --- trunk/pysoy/src/textures/Texture.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/textures/Texture.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -20,7 +20,7 @@ cdef class Texture (soy._internals.Loadable) : '''PySoy Texture - The base texture class which all others inherit + The base texture class which all others inherit ''' def __cinit__(self, *args, **keywords) : self._mutex = py.PyThread_allocate_lock() Modified: trunk/pysoy/src/textures/Video.pxi =================================================================== --- trunk/pysoy/src/textures/Video.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/textures/Video.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -21,7 +21,7 @@ cdef class Video (Texture) : '''PySoy textures.Video Class - Renders an Ogg Theora stream to a texture + Renders an Ogg Theora stream to a texture ''' cdef int _coreLoad(self, void *_data, int _size) : cdef int x, y, _cx, _cy, _tx, _ty, _yl, _yc Modified: trunk/pysoy/src/widgets/Canvas.pxi =================================================================== --- trunk/pysoy/src/widgets/Canvas.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/widgets/Canvas.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -20,17 +20,17 @@ cdef class Canvas (Widget) : ''' PySoy's Canvas - This widget control adds a texture on top of a Projector. - It can be stacked together with soy.textures.Font, to create display text on the Projector. - - It accepts a texture and some placement arguments. It's parent should be another widget, - (probably a soy.Window). Aspect must be a positive value (Negative values disables it). + This widget control adds a texture on top of a Projector. + It can be stacked together with soy.textures.Font, to create display text on the Projector. + + It accepts a texture and some placement arguments. It's parent should be another widget, + (probably a soy.Window). Aspect must be a positive value (Negative values disables it). - soy.Canvas can be used to display an image, or as a HUD, or even as a 2D background, depending on - the stack of Widgets. For example to display an image on top of the projector, but also display a 2d - background the Stack could be Canvas,Projector,Canvas. + soy.Canvas can be used to display an image, or as a HUD, or even as a 2D background, depending on + the stack of Widgets. For example to display an image on top of the projector, but also display a 2d + background the Stack could be Canvas,Projector,Canvas. - See also Widget,Projector,Window + See also Widget,Projector,Window ''' def __cinit__(self, parent=None, margin=None, aspect=-1.0, texture=None, Modified: trunk/pysoy/src/widgets/Projector.pxi =================================================================== --- trunk/pysoy/src/widgets/Projector.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/widgets/Projector.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -20,13 +20,13 @@ cdef class Projector(Widget) : '''Pysoy's Projector - Creates a suitable container for display of the output of a camera. The - result can be placed on to soy.Screen for example and can - be viewed. + Creates a suitable container for display of the output of a camera. The + result can be placed on to soy.Screen for example and can + be viewed. - It accepts a soy.Camera, as well as other placement arguments. + It accepts a soy.Camera, as well as other placement arguments. - See also soy.Widget, soy.Camera, soy.Screen + See also soy.Widget, soy.Camera, soy.Screen ''' def __cinit__(self, parent=None, margin=None, aspect=-1.0, camera=None, Modified: trunk/pysoy/src/widgets/StackX.pxi =================================================================== --- trunk/pysoy/src/widgets/StackX.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/widgets/StackX.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -20,7 +20,7 @@ cdef class StackX (StackZ) : '''PySoy widgets.StackX Class - This stacking widget packs children horizontally without overlap. + This stacking widget packs children horizontally without overlap. ''' cdef void _resize(self, int _x, int _y, int _width, int _height) : cdef int i, _part Modified: trunk/pysoy/src/widgets/StackY.pxi =================================================================== --- trunk/pysoy/src/widgets/StackY.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/widgets/StackY.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -20,7 +20,7 @@ cdef class StackY (StackZ) : '''PySoy widgets.StackY Class - This stacking widget packs children vertically without overlap. + This stacking widget packs children vertically without overlap. ''' cdef void _resize(self, int _x, int _y, int _width, int _height) : cdef int i, _part Modified: trunk/pysoy/src/widgets/StackZ.pxi =================================================================== --- trunk/pysoy/src/widgets/StackZ.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/widgets/StackZ.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -20,8 +20,8 @@ cdef class StackZ (Widget) : '''PySoy widgets.StackZ Class - This stacking widget overlaps children as "layers". This behavior is - identical to how a soy.Window stacks top-level widgets. Z widget indexing. + This stacking widget overlaps children as "layers". This behavior is + identical to how a soy.Window stacks top-level widgets. Z widget indexing. ''' def __cinit__(self, parent=None, margin=None, aspect=-1.0, *args, **keywords) : Modified: trunk/pysoy/src/widgets/Widget.pxi =================================================================== --- trunk/pysoy/src/widgets/Widget.pxi 2008-02-17 02:05:35 UTC (rev 913) +++ trunk/pysoy/src/widgets/Widget.pxi 2008-02-17 02:27:56 UTC (rev 914) @@ -20,18 +20,18 @@ cdef class Widget : '''Widget Class - A Widget is a 2d section/layer in a soy.window.Window. This is the base - class which all widgets inherit, it has no render functionality. + A Widget is a 2d section/layer in a soy.window.Window. This is the base + class which all widgets inherit, it has no render functionality. - It accepts some placement arguments as well as an aspect argument. - Aspect must be a positive value (Negative values disables it). + It accepts some placement arguments as well as an aspect argument. + Aspect must be a positive value (Negative values disables it). - Classes that inherit soy.Widget: - -soy.Widget.Projector - -soy.Widget.Canvas - -soy.Widget.StackX - -soy.Widget.StackY - -soy.Widget.StackZ + Classes that inherit soy.Widget: + -soy.Widget.Projector + -soy.Widget.Canvas + -soy.Widget.StackX + -soy.Widget.StackY + -soy.Widget.StackZ ''' def __cinit__(self, parent=None, margin=None, aspect=-1.0, *args, **keywords) : _______________________________________________ PySoy-SVN mailing list PySoy-SVN@pysoy.org http://www.pysoy.org/mailman/listinfo/pysoy-svn