[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-10-31 UTC."],[[["\u003cp\u003e\u003ccode\u003ePoint.OrientationMode\u003c/code\u003e is an enum that indicates the point orientation mode in ARCore.\u003c/p\u003e\n"],["\u003cp\u003eIt offers two modes: \u003ccode\u003eESTIMATED_SURFACE_NORMAL\u003c/code\u003e where orientation follows the surface normal at the hit location, and \u003ccode\u003eINITIALIZED_TO_IDENTITY\u003c/code\u003e where it starts as identity but may drift.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eESTIMATED_SURFACE_NORMAL\u003c/code\u003e mode uses the same behavior as described in \u003ccode\u003eHitResult.getHitPose()\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eThis enum inherits various methods from \u003ccode\u003ejava.lang.Enum\u003c/code\u003e, \u003ccode\u003ejava.lang.Object\u003c/code\u003e, \u003ccode\u003ejava.lang.constant.Constable\u003c/code\u003e, and \u003ccode\u003ejava.lang.Comparable\u003c/code\u003e for object manipulation and comparison.\u003c/p\u003e\n"]]],["The document details `Point.OrientationMode`, an enum for point orientation. It lists inherited methods from `java.lang.Enum`, `java.lang.Object`, `java.lang.constant.Constable`, and `java.lang.Comparable`, including actions like `compareTo`, `equals`, `hashCode`, `toString`, and `clone`. Two enum values are defined: `ESTIMATED_SURFACE_NORMAL`, where orientation follows `HitResult.getHitPose()` and `INITIALIZED_TO_IDENTITY`, where orientation starts as identity and may slightly change later.\n"],null,["# Point.OrientationMode\n\n`\npublic static final enum\n`**Point.OrientationMode**`\n` \nIndicates the point orientation mode. \n\nInherited Methods\n-----------------\n\nFrom `class\njava.lang.Enum` \n\n|----------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ` final `[Object](https://developer.android.com/reference/java/lang/Object)` ` | clone`()` |\n| ` final int ` | compareTo`(`[Point.OrientationMode](/ar/reference/java/com/google/ar/core/Point.OrientationMode)` arg0)` |\n| ` int ` | compareTo`(`[Object](https://developer.android.com/reference/java/lang/Object)` arg0)` |\n| ` final Optional\u003cEnumDesc\u003c`[Point.OrientationMode](/ar/reference/java/com/google/ar/core/Point.OrientationMode)`\u003e\u003e ` | describeConstable`()` |\n| ` final boolean ` | equals`(`[Object](https://developer.android.com/reference/java/lang/Object)` arg0)` |\n| ` final void ` | finalize`()` |\n| ` final `[Class](https://developer.android.com/reference/java/lang/Class)`\u003c`[Point.OrientationMode](/ar/reference/java/com/google/ar/core/Point.OrientationMode)`\u003e ` | getDeclaringClass`()` |\n| ` final int ` | hashCode`()` |\n| ` final `[String](https://developer.android.com/reference/java/lang/String)` ` | name`()` |\n| ` final int ` | ordinal`()` |\n| ` `[String](https://developer.android.com/reference/java/lang/String)` ` | toString`()` |\n| ` static \u003cT extends `[Enum](https://developer.android.com/reference/java/lang/Enum)`\u003cT\u003e\u003e T ` | valueOf`(`[Class](https://developer.android.com/reference/java/lang/Class)`\u003cT\u003e arg0, `[String](https://developer.android.com/reference/java/lang/String)` arg1)` |\n\nFrom `class\njava.lang.Object` \n\n|---------------------------------------------------------------------------------|-------------------------------------------------------------------------------------|\n| ` `[Object](https://developer.android.com/reference/java/lang/Object)` ` | clone`()` |\n| ` boolean ` | equals`(`[Object](https://developer.android.com/reference/java/lang/Object)` arg0)` |\n| ` void ` | finalize`()` |\n| ` final `[Class](https://developer.android.com/reference/java/lang/Class)`\u003c?\u003e ` | getClass`()` |\n| ` int ` | hashCode`()` |\n| ` final void ` | notify`()` |\n| ` final void ` | notifyAll`()` |\n| ` `[String](https://developer.android.com/reference/java/lang/String)` ` | toString`()` |\n| ` final void ` | wait`(long arg0, int arg1)` |\n| ` final void ` | wait`(long arg0)` |\n| ` final void ` | wait`()` |\n\nFrom `interface\njava.lang.constant.Constable` \n\n|-----------------------------------------------|-----------------------|\n| ` abstract Optional\u003c? extends ConstantDesc\u003e ` | describeConstable`()` |\n\nFrom `interface\njava.lang.Comparable` \n\n|------------------|----------------------------------------------------------------------------------------------------------|\n| ` abstract int ` | compareTo`(`[Point.OrientationMode](/ar/reference/java/com/google/ar/core/Point.OrientationMode)` arg0)` |\n\nEnum Values\n-----------\n\n#### public\nstatic\nfinal\nPoint.OrientationMode\nESTIMATED_SURFACE_NORMAL\n\n### ESTIMATED_SURFACE_NORMAL\n\n```java\npublic static final Point.OrientationMode ESTIMATED_SURFACE_NORMAL\n``` \nPoint orientation will follow the behavior described in [HitResult.getHitPose()](/ar/reference/java/com/google/ar/core/HitResult#getHitPose()).\n\n#### public\nstatic\nfinal\nPoint.OrientationMode\nINITIALIZED_TO_IDENTITY\n\n### INITIALIZED_TO_IDENTITY\n\n```java\npublic static final Point.OrientationMode INITIALIZED_TO_IDENTITY\n``` \nPoint orientation is initialized to identity but may adjust slightly over time."]]