LocationToScreenResult Class
The result of converting a scene location to a screen point. More...
Header: | #include <LocationToScreenResult> |
Since: | Esri::ArcGISRuntime 100.0 |
Public Functions
LocationToScreenResult() | |
LocationToScreenResult(const LocationToScreenResult &other) | |
LocationToScreenResult(LocationToScreenResult &&other) | |
~LocationToScreenResult() | |
bool | isEmpty() const |
QPointF | screenPoint() const |
SceneLocationVisibility | visibility() const |
LocationToScreenResult & | operator=(const LocationToScreenResult &other) |
LocationToScreenResult & | operator=(LocationToScreenResult &&other) |
Detailed Description
The result of converting a scene location to a screen point.
A screen point result is the x/y screen position where the x/y/z scene location would appear, and whether the x/y/z position is visible, off the screen, or hidden from the camera by objects in the scene.
Member Function Documentation
LocationToScreenResult::LocationToScreenResult()
Default constructor.
Warning: This is for convenience only and will construct an empty object.
LocationToScreenResult::LocationToScreenResult(const LocationToScreenResult &other)
Copy constructor from other LocationToScreenResult.
LocationToScreenResult::LocationToScreenResult(LocationToScreenResult &&other)
Move constructor from other LocationToScreenResult.
LocationToScreenResult::~LocationToScreenResult()
Destructor.
bool LocationToScreenResult::isEmpty() const
Returns true
if this LocationToScreenResult is empty.
QPointF LocationToScreenResult::screenPoint() const
Returns the screen point of the result.
SceneLocationVisibility LocationToScreenResult::visibility() const
Returns the SceneLocationVisibility of the result.
LocationToScreenResult &LocationToScreenResult::operator=(const LocationToScreenResult &other)
Assignment operator from other LocationToScreenResult.
LocationToScreenResult &LocationToScreenResult::operator=(LocationToScreenResult &&other)
Move operator from other LocationToScreenResult.