Package openalea :: Package plantgl :: Package scenegraph :: Module _pglsg :: Class Point2Array
[frames] | no frames]

Class Point2Array

 object --+    
          |    
??.instance --+
              |
             Point2Array

Instance Methods
 
__add__(...)
__add__( (Point2Array)arg1, (Vector2)arg2) -> Point2Array :
 
__contains__(...)
__contains__( (Point2Array)arg1, (Vector2)arg2) -> bool :
 
__delitem__(...)
__delitem__( (Point2Array)arg1, (int)arg2) -> None :
 
__delslice__(...)
__delslice__( (Point2Array)arg1, (int)arg2, (int)arg3) -> None :
 
__getinitargs__(...)
__getinitargs__( (Point2Array)arg1) -> tuple :
 
__getitem__(...)
__getitem__( (Point2Array)arg1, (int)arg2) -> Vector2 :
 
__getslice__(...)
__getslice__( (Point2Array)arg1, (int)arg2, (int)arg3) -> Point2Array :
 
__iadd__(...)
__iadd__( (Point2Array)arg1, (Vector2)arg2) -> Point2Array :
 
__init__(...)
__init__( (object)arg1, (int)size) -> None : Point2Array(int size)
 
__len__(...)
__len__( (Point2Array)arg1) -> int :
 
__reduce__(...)
helper for pickle
 
__repr__(...)
__repr__( (Point2Array)arg1) -> str :
 
__setitem__(...)
__setitem__( (Point2Array)arg1, (int)arg2, (Vector2)arg3) -> None :
 
__str__(...)
__str__( (Point2Array)arg1) -> str :
 
append(...)
append( (Point2Array)arg1, (Vector2)arg2) -> None :
 
clear(...)
clear( (Point2Array)arg1) -> None :
 
getBounds(...)
getBounds( (Point2Array)arg1) -> object :
 
getCenter(...)
getCenter( (Point2Array)arg1) -> Vector2 :
 
getExtent(...)
getExtent( (Point2Array)arg1) -> Vector2 :
 
getId(...)
getId( (Point2Array)arg1) -> int :
 
getLength(...)
getLength( (Point2Array)arg1) -> float :
 
getXMaxIndex(...)
getXMaxIndex( (Point2Array)arg1) -> int :
 
getXMinAndMaxIndex(...)
getXMinAndMaxIndex( (Point2Array)arg1) -> object :
 
getXMinIndex(...)
getXMinIndex( (Point2Array)arg1) -> int :
 
getYMaxIndex(...)
getYMaxIndex( (Point2Array)arg1) -> int :
 
getYMinAndMaxIndex(...)
getYMinAndMaxIndex( (Point2Array)arg1) -> object :
 
getYMinIndex(...)
getYMinIndex( (Point2Array)arg1) -> int :
 
hausdorff_distance(...)
hausdorff_distance( (Point2Array)arg1, (Point2Array)arg2) -> float :
 
insert(...)
insert( (Point2Array)arg1, (int)arg2, (Vector2)arg3) -> None :
 
normalize(...)
normalize( (Point2Array)arg1) -> None :
 
partition(...)
partition( (Point2Array)arg1, (object)arg2) -> list :
 
pop(...)
pop( (Point2Array)arg1 [, (int)arg2]) -> Vector2 :
 
reverse(...)
reverse( (Point2Array)arg1) -> None :
 
sort(...)
sort( (Point2Array)arg1, (object)arg2) -> None :
 
transform(...)
transform( (Point2Array)arg1, (Matrix2)arg2) -> None :

Inherited from unreachable.instance: __new__

Inherited from object: __delattr__, __getattribute__, __hash__, __reduce_ex__, __setattr__

Class Variables
  __instance_size__ = 12
  __safe_for_unpickling__ = True
Properties

Inherited from object: __class__

Method Details

__add__(...)
(Addition operator)

 

__add__( (Point2Array)arg1, (Vector2)arg2) -> Point2Array :

    C++ signature :
        class PGL::Point2Array * __add__(class PGL::Point2Array *,class TOOLS::Vector2)

__contains__(...)
(In operator)

 

__contains__( (Point2Array)arg1, (Vector2)arg2) -> bool :

    C++ signature :
        bool __contains__(class PGL::Point2Array *,class TOOLS::Vector2)

__delitem__(...)
(Index deletion operator)

 

__delitem__( (Point2Array)arg1, (int)arg2) -> None :

    C++ signature :
        void __delitem__(class PGL::Point2Array *,int)

__delslice__(...)
(Slice deletion operator)

 

__delslice__( (Point2Array)arg1, (int)arg2, (int)arg3) -> None :

    C++ signature :
        void __delslice__(class PGL::Point2Array *,int,int)

__getinitargs__(...)

 

__getinitargs__( (Point2Array)arg1) -> tuple :

    C++ signature :
        class boost::python::tuple __getinitargs__(class PGL::Point2Array)

__getitem__(...)
(Indexing operator)

 

__getitem__( (Point2Array)arg1, (int)arg2) -> Vector2 :

    C++ signature :
        class TOOLS::Vector2 {lvalue} __getitem__(class PGL::Point2Array *,int)

__getslice__(...)
(Slicling operator)

 

__getslice__( (Point2Array)arg1, (int)arg2, (int)arg3) -> Point2Array :

    C++ signature :
        class PGL::Point2Array * __getslice__(class PGL::Point2Array *,int,int)

__iadd__(...)

 

__iadd__( (Point2Array)arg1, (Vector2)arg2) -> Point2Array :

    C++ signature :
        class PGL::Point2Array * __iadd__(class PGL::Point2Array *,class TOOLS::Vector2)

__iadd__( (Point2Array)arg1, (Point2Array)arg2) -> Point2Array :

    C++ signature :
        class PGL::Point2Array * __iadd__(class PGL::Point2Array *,class TOOLS::RefCountPtr<class PGL::Point2Array>)

__init__(...)
(Constructor)

 

__init__( (object)arg1, (int)size) -> None :
    Point2Array(int size)

    C++ signature :
        void __init__(struct _object *,unsigned int)

__init__( (object)arg1, (object)arg2) -> object :
    Point2Array([Vector2(x,y),...])

    C++ signature :
        void * __init__(class boost::python::api::object,class boost::python::api::object)

Overrides: object.__init__

__len__(...)
(Length operator)

 

__len__( (Point2Array)arg1) -> int :

    C++ signature :
        unsigned int __len__(class PGL::Point2Array *)

__reduce__(...)

 
helper for pickle

Overrides: object.__reduce__
(inherited documentation)

__repr__(...)
(Representation operator)

 

__repr__( (Point2Array)arg1) -> str :

    C++ signature :
        class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __repr__(class PGL::Point2Array *)

Overrides: object.__repr__

__setitem__(...)
(Index assignment operator)

 

__setitem__( (Point2Array)arg1, (int)arg2, (Vector2)arg3) -> None :

    C++ signature :
        void __setitem__(class PGL::Point2Array *,int,class TOOLS::Vector2)

__str__(...)
(Informal representation operator)

 

__str__( (Point2Array)arg1) -> str :

    C++ signature :
        class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __str__(class PGL::Point2Array *)

Overrides: object.__str__

append(...)

 

append( (Point2Array)arg1, (Vector2)arg2) -> None :

    C++ signature :
        void append(class PGL::Point2Array *,class TOOLS::Vector2)

clear(...)

 

clear( (Point2Array)arg1) -> None :

    C++ signature :
        void clear(class PGL::Point2Array {lvalue})

getBounds(...)

 

getBounds( (Point2Array)arg1) -> object :

    C++ signature :
        class boost::python::api::object getBounds(class PGL::Point2Array const *)

getCenter(...)

 

getCenter( (Point2Array)arg1) -> Vector2 :

    C++ signature :
        class TOOLS::Vector2 getCenter(class PGL::Point2Array {lvalue})

getExtent(...)

 

getExtent( (Point2Array)arg1) -> Vector2 :

    C++ signature :
        class TOOLS::Vector2 getExtent(class PGL::Point2Array {lvalue})

getId(...)

 

getId( (Point2Array)arg1) -> int :

    C++ signature :
        unsigned int getId(class PGL::Point2Array *)

getLength(...)

 

getLength( (Point2Array)arg1) -> float :

    C++ signature :
        double getLength(class PGL::Point2Array {lvalue})

getXMaxIndex(...)

 

getXMaxIndex( (Point2Array)arg1) -> int :

    C++ signature :
        int getXMaxIndex(class PGL::Point2Array const *)

getXMinAndMaxIndex(...)

 

getXMinAndMaxIndex( (Point2Array)arg1) -> object :

    C++ signature :
        class boost::python::api::object getXMinAndMaxIndex(class PGL::Point2Array const *)

getXMinIndex(...)

 

getXMinIndex( (Point2Array)arg1) -> int :

    C++ signature :
        int getXMinIndex(class PGL::Point2Array const *)

getYMaxIndex(...)

 

getYMaxIndex( (Point2Array)arg1) -> int :

    C++ signature :
        int getYMaxIndex(class PGL::Point2Array const *)

getYMinAndMaxIndex(...)

 

getYMinAndMaxIndex( (Point2Array)arg1) -> object :

    C++ signature :
        class boost::python::api::object getYMinAndMaxIndex(class PGL::Point2Array const *)

getYMinIndex(...)

 

getYMinIndex( (Point2Array)arg1) -> int :

    C++ signature :
        int getYMinIndex(class PGL::Point2Array const *)

hausdorff_distance(...)

 

hausdorff_distance( (Point2Array)arg1, (Point2Array)arg2) -> float :

    C++ signature :
        double hausdorff_distance(class TOOLS::RefCountPtr<class PGL::Point2Array>,class TOOLS::RefCountPtr<class PGL::Point2Array>)

insert(...)

 

insert( (Point2Array)arg1, (int)arg2, (Vector2)arg3) -> None :

    C++ signature :
        void insert(class PGL::Point2Array *,int,class TOOLS::Vector2)

normalize(...)

 

normalize( (Point2Array)arg1) -> None :

    C++ signature :
        void normalize(class PGL::Point2Array {lvalue})

partition(...)

 

partition( (Point2Array)arg1, (object)arg2) -> list :

    C++ signature :
        class boost::python::list partition(class PGL::Point2Array *,class boost::python::api::object)

pop(...)

 

pop( (Point2Array)arg1 [, (int)arg2]) -> Vector2 :

    C++ signature :
        class TOOLS::Vector2 pop(class PGL::Point2Array * [,int])

reverse(...)

 

reverse( (Point2Array)arg1) -> None :

    C++ signature :
        void reverse(class PGL::Point2Array {lvalue})

sort(...)

 

sort( (Point2Array)arg1, (object)arg2) -> None :

    C++ signature :
        void sort(class PGL::Point2Array *,class boost::python::api::object)

transform(...)

 

transform( (Point2Array)arg1, (Matrix2)arg2) -> None :

    C++ signature :
        void transform(class PGL::Point2Array {lvalue},class TOOLS::Matrix2)