Show
Ignore:
Timestamp:
09/14/03 14:59:32 (5 years ago)
Author:
sholloway
Message:

Added GL prefix to Execute/Select/Deselect

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/RBRapier/RBRapier/Tools/Visualizers/AxisSets.py

    r379 r702  
    5353            setattr(self, name, value) 
    5454 
    55     def Execute(self, context): 
     55    def GLExecute(self, context): 
    5656        AxisLength = self.AxisLength 
    5757 
  • trunk/RBRapier/RBRapier/Tools/Visualizers/Grids.py

    r379 r702  
    101101        #GL.glTexParameterf(GL.GL_TEXTURE_2D, GL.GL_TEXTURE_MIN_FILTER, GL.GL_LINEAR_MIPMAP_NEAREST) 
    102102 
    103     def Execute(self, context): 
     103    def GLExecute(self, context): 
    104104        if self.ReloadTexture or self.TextureID is None: 
    105105            self._LoadTexture() 
  • trunk/RBRapier/RBRapier/Tools/Visualizers/ProjectionBoxes.py

    r379 r702  
    6464        self._Vertices= VertexArray(Numeric.zeros((8,3), Numeric.Float32)) 
    6565 
    66     def Execute(self, context): 
     66    def GLExecute(self, context): 
    6767        GL.glLineWidth(self.LineWidth) 
    6868        GL.glColor4f(*self.color) 
    6969        self._UpdateBoxVertices() 
    70         self._Vertices.Select(context) 
    71         self._BoxTraversal.Execute(context) 
    72         self._Vertices.Deselect(context) 
     70        self._Vertices.GLSelect(context) 
     71        self._BoxTraversal.GLExecute(context) 
     72        self._Vertices.GLDeselect(context) 
    7373        GL.glLineWidth(1.) 
    7474 
     
    7878        self._Vertices.data[4:] = [(l,b,f), (r,b,f), (r,t,f), (l,t,f)] 
    7979        return self._Vertices.data 
    80  
    81     Draw = Execute 
    8280 
    8381#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~