ArcGIS Runtime SDK for iOS: AGSTransformationMatrix.h Source File
ArcGIS Runtime SDK for iOS  100.15
AGSTransformationMatrix.h
Go to the documentation of this file.
1 /*
2  COPYRIGHT 2022 ESRI
3 
4  All rights reserved under the copyright laws of the United States
5  and applicable international laws, treaties, and conventions.
6 
7  This material is licensed for use under the Esri Master License
8  Agreement (MLA), and is bound by the terms of that agreement.
9  You may redistribute and use this code without modification,
10  provided you adhere to the terms of the MLA and include this
11  copyright notice.
12 
13  See use restrictions at http://www.esri.com/legal/pdfs/mla_e204_e300/english
14 
15  For additional information, contact:
16  Environmental Systems Research Institute, Inc.
17  Attn: Contracts and Legal Services Department
18  380 New York Street
19  Redlands, California, 92373
20  USA
21 
22  email: contracts@esri.com
23  */
24  //Required for Globals API doc
26 
27 #import <Foundation/Foundation.h>
28 #import <ArcGIS/AGSObject.h>
29 
30 
31 
37 
38 #pragma mark -
39 #pragma mark initializers
40 
41 
42 
43 #pragma mark -
44 #pragma mark properties
45 
49 @property (nonatomic, assign, readonly) double quaternionW;
50 
54 @property (nonatomic, assign, readonly) double quaternionX;
55 
59 @property (nonatomic, assign, readonly) double quaternionY;
60 
64 @property (nonatomic, assign, readonly) double quaternionZ;
65 
69 @property (nonatomic, assign, readonly) double translationX;
70 
74 @property (nonatomic, assign, readonly) double translationY;
75 
79 @property (nonatomic, assign, readonly) double translationZ;
80 
87 @property (class, strong, readonly) AGSTransformationMatrix *identityMatrix;
88 
89 #pragma mark -
90 #pragma mark methods
91 
102 +(AGSTransformationMatrix*)transformationMatrixWithQuaternionX:(double)quaternionX
103  quaternionY:(double)quaternionY
104  quaternionZ:(double)quaternionZ
105  quaternionW:(double)quaternionW
106  translationX:(double)translationX
107  translationY:(double)translationY
108  translationZ:(double)translationZ;
109 
115 -(AGSTransformationMatrix *)addTransformation:(AGSTransformationMatrix *)transformation;
116 
122 -(AGSTransformationMatrix *)subtractTransformation:(AGSTransformationMatrix *)transformation;
123 
124 @end
125 
126 
Definition: AGSObject.h:28
A class for holding a translation and quaternion array. This is used for camera movement while preven...
Definition: AGSTransformationMatrix.h:37
double translationY
Definition: AGSTransformationMatrix.h:74
double quaternionX
Definition: AGSTransformationMatrix.h:54
double translationX
Definition: AGSTransformationMatrix.h:69
AGSTransformationMatrix * identityMatrix
Definition: AGSTransformationMatrix.h:87
double quaternionW
Definition: AGSTransformationMatrix.h:49
double quaternionY
Definition: AGSTransformationMatrix.h:59
double translationZ
Definition: AGSTransformationMatrix.h:79
double quaternionZ
Definition: AGSTransformationMatrix.h:64