com.zepben.evolve.cim.iec61970.base.diagramlayout.OrientationKind.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of evolve-sdk Show documentation
Show all versions of evolve-sdk Show documentation
SDK for interaction with the evolve platform
/*
* Copyright 2020 Zeppelin Bend Pty Ltd
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
package com.zepben.evolve.cim.iec61970.base.diagramlayout
/**
* The orientation of the coordinate system with respect to top, left, and the coordinate number system.
*
* @property POSITIVE For 2D diagrams, a positive orientation will result in X values increasing from left to right and Y values increasing
* from bottom to top. This is also known as a right hand orientation.
* @property NEGATIVE For 2D diagrams, a negative orientation gives the left-hand orientation (favoured by computer graphics displays)
* with X values increasing from left to right and Y values increasing from top to bottom. This is also known as
* a left hand orientation.
*/
enum class OrientationKind {
POSITIVE,
NEGATIVE
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy