terrahs-0.7: A library for GIS Programs in Haskell.Source codeContentsIndex
TerraHS.TerraLib.TeBox
Contents
The TeBox type
Operations on TeBox
Description

A module for supporting a TeBox TerraLib class

Provides support for dealing with a rectangular a box. Used by all geometrical representations

More information - http://www.terralib.org

Synopsis
data TeBox = TeBox Double Double Double Double
type TeBoxPtr = Ptr TeBox
x1 :: TeBox -> Double
y1 :: TeBox -> Double
x2 :: TeBox -> Double
y2 :: TeBox -> Double
The TeBox type
data TeBox Source
The type TeBox represents a rectangular box. Used by all geometrical representations in TerraLib Library
Constructors
TeBox Double Double Double Double
show/hide Instances
type TeBoxPtr = Ptr TeBoxSource
The type TeBoxPtr is a pointer to TeBox
Operations on TeBox
x1 :: TeBox -> DoubleSource
Returns the x component of the lower left corner
y1 :: TeBox -> DoubleSource
Returns the y component of the lower left corner
x2 :: TeBox -> DoubleSource
Returns the x component of the upper right corner
y2 :: TeBox -> DoubleSource
Returns the y component of the upper right corner
Produced by Haddock version 2.4.2