Changeset 7893:0ed4de88c951


Ignore:
Timestamp:
12/29/07 13:19:43 (5 years ago)
Author:
William Stein <wstein@…>
Branch:
default
Message:

Fix a spelling mistake "Primative" --> "Primitive".

Location:
sage/plot/plot3d
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • sage/plot/plot3d/base.pxd

    r7863 r7893  
    55    cdef object texture 
    66 
    7 cdef class PrimativeObject(Graphics3d): 
     7cdef class PrimitiveObject(Graphics3d): 
    88    pass 
  • sage/plot/plot3d/base.pyx

    r7892 r7893  
    405405 
    406406 
    407 cdef class PrimativeObject(Graphics3d): 
     407cdef class PrimitiveObject(Graphics3d): 
    408408    def __init__(self, **kwds): 
    409409        try: 
  • sage/plot/plot3d/index_face_set.pxd

    r5993 r7893  
    1 from sage.plot.plot3d.base cimport PrimativeObject 
     1from sage.plot.plot3d.base cimport PrimitiveObject 
    22 
    33from transform cimport point_c, face_c 
    44 
    5 cdef class IndexFaceSet(PrimativeObject): 
     5cdef class IndexFaceSet(PrimitiveObject): 
    66    cdef bint enclosed 
    77    cdef Py_ssize_t vcount, fcount, icount 
  • sage/plot/plot3d/index_face_set.pyx

    r7891 r7893  
    144144 
    145145 
    146 cdef class IndexFaceSet(PrimativeObject): 
     146cdef class IndexFaceSet(PrimitiveObject): 
    147147 
    148148    """ 
     
    185185 
    186186    def __init__(self, faces, point_list=None, enclosed=False, **kwds): 
    187         PrimativeObject.__init__(self, **kwds) 
     187        PrimitiveObject.__init__(self, **kwds) 
    188188         
    189189        self.enclosed = enclosed 
  • sage/plot/plot3d/shapes.pxd

    r5994 r7893  
    1 from base cimport PrimativeObject 
     1from base cimport PrimitiveObject 
    22from index_face_set cimport IndexFaceSet, point_c, face_c 
    33from parametric_surface cimport ParametricSurface 
  • sage/plot/plot3d/shapes.pyx

    r7892 r7893  
    348348 
    349349 
    350 class Text(PrimativeObject): 
     350class Text(PrimitiveObject): 
    351351    def __init__(self, string, **kwds): 
    352         PrimativeObject.__init__(self, **kwds) 
     352        PrimitiveObject.__init__(self, **kwds) 
    353353        self.string = string 
    354354    def x3d_geometry(self): 
Note: See TracChangeset for help on using the changeset viewer.