packed record TBoundingBox

DescriptionHierarchyFieldsMethodsProperties

Unit

Declaration

type TBoundingBox = packed record

Description

TBoundingBox represents the bounding box of a shape or of all the shapes in a Shapefile.

  TBoundingBox = packed record
  case integer of
    0: (XMin: double;
        YMin: double;
        XMax: double;
        YMax: double);
    1: (Box: array[0..3] of double);
  end;
 

Overview

Fields

XMin: double;
YMin: double;
XMax: double;
YMax: double
Box: array[0..3] of double

Description

Fields

XMin: double;

XMin is the minimum X coordinate.

YMin: double;

YMin is the minimum Y coordinate.

XMax: double;

XMax is the maximum X coordinate.

YMax: double

YMax is the maximum Y coordinate.

Box: array[0..3] of double

Box represents the bounding box in an array in the order XMin, YMin, XMax, YMax.


Generated by PasDoc 0.12.1 on 2013-05-13 15:42:03