__init__(self,
*args,
**kwargs)
(Constructor)
|
|
__init__( (object)arg1, (float)minx, (float)miny, (float)maxx, (float)maxy) -> None :
Constructs a new envelope from the coordinates
of its lower left and upper right corner points.
C++ signature :
void __init__(_object*,double,double,double,double)
__init__( (object)arg1) -> None :
Equivalent to Box2d(0, 0, -1, -1).
C++ signature :
void __init__(_object*)
__init__( (object)arg1, (Coord)ll, (Coord)ur) -> None :
Equivalent to Box2d(ll.x, ll.y, ur.x, ur.y).
C++ signature :
void __init__(_object*,mapnik::coord<double, 2>,mapnik::coord<double, 2>)
- Overrides:
object.__init__
- (inherited documentation)
|