Last updated

API / geotoolkit3d / util / Helper / Coordinate

Enumeration: Coordinate

util.Helper.Coordinate

Transform Space.
This enum is used to describe the transform space of the bounding box.

Table of contents

Enumeration Members

Contents

Enumeration Members

Business

Business = "Business"

Business coordinate are similar to world coordinates, but without the Plot scale applied.
For example, if we observe a point with Z = 15 in world coordinates, and the Plot Z scale is 10, the point's Z in Business coordinates will be 1.5.
As a rule of thumb, when users add or interact with objects into the scene, they should always work in Business coordinates, World coordinates are used at the rendering level only.


World

World = "World"

World coordinates, which applies the Plot's scale. Usually only used at the rendering level. Users are encouraged to use Business coordinates instead.