Package com.indooratlas.android.sdk
Interface IAARObject
-
@Restricted @Beta public interface IAARObject
IAARObject represents the coordinates (i.e., a model matrix) of an object in the AR coordinate system. These coordinates can change based on position updates computed by the IndoorAtlas SDK, but the coordinates do not change immediately on each position update, but gradually in a visually pleasing manner. NOTE! To enable AR features, please contact IndoorAtlas sales.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
updateModelMatrix(float[] outputModelMatrix)
Get the current model matrix for this object.
-
-
-
Method Detail
-
updateModelMatrix
boolean updateModelMatrix(float[] outputModelMatrix)
Get the current model matrix for this object.- Parameters:
outputModelMatrix
- Output: a 4x4 homogeneous model-to-world matrix. Column-major format. Must contain exactly 16 elements.- Returns:
- true if the outputModelMatrix was set and the object can be displayed, false if the model matrix is not available or object should not be displayed for some other reason.
-
-