idx int64 0 41.2k | question stringlengths 83 4.15k | target stringlengths 5 715 |
|---|---|---|
25,100 | public void setDuration ( float start , float end ) { for ( GVRAnimation anim : mAnimations ) { anim . setDuration ( start , end ) ; } } | Sets the duration for the animations in this animator . |
25,101 | public static void init ( Context cx , Scriptable scope , boolean sealed ) throws RhinoException { JSAdapter obj = new JSAdapter ( cx . newObject ( scope ) ) ; obj . setParentScope ( scope ) ; obj . setPrototype ( getFunctionPrototype ( scope ) ) ; obj . isPrototype = true ; ScriptableObject . defineProperty ( scope , ... | initializer to setup JSAdapter prototype in the given scope |
25,102 | private Object mapToId ( Object tmp ) { if ( tmp instanceof Double ) { return new Integer ( ( ( Double ) tmp ) . intValue ( ) ) ; } else { return Context . toString ( tmp ) ; } } | map a property id . Property id can only be an Integer or String |
25,103 | public void setList ( List < T > list ) { if ( list != mList ) { mList = list ; if ( mList == null ) { notifyInvalidated ( ) ; } else { notifyChanged ( ) ; } } } | Set new list data set |
25,104 | public void register ( ) { synchronized ( loaders ) { loaders . add ( this ) ; maximumHeaderLength = 0 ; for ( GVRCompressedTextureLoader loader : loaders ) { int headerLength = loader . headerLength ( ) ; if ( headerLength > maximumHeaderLength ) { maximumHeaderLength = headerLength ; } } } } | Register a loader with the sniffer . |
25,105 | public static GVRSceneObject loadModel ( final GVRContext gvrContext , final String modelFile ) throws IOException { return loadModel ( gvrContext , modelFile , new HashMap < String , Integer > ( ) ) ; } | Load model from file |
25,106 | public int getFaceNumIndices ( int face ) { if ( null == m_faceOffsets ) { if ( face >= m_numFaces || face < 0 ) { throw new IndexOutOfBoundsException ( "Index: " + face + ", Size: " + m_numFaces ) ; } return 3 ; } else { if ( face == m_numFaces - 1 ) { return m_faces . capacity ( ) / 4 - m_faceOffsets . getInt ( face ... | Returns the number of vertex indices for a single face . |
25,107 | public float getPositionX ( int vertex ) { if ( ! hasPositions ( ) ) { throw new IllegalStateException ( "mesh has no positions" ) ; } checkVertexIndexBounds ( vertex ) ; return m_vertices . getFloat ( vertex * 3 * SIZEOF_FLOAT ) ; } | Returns the x - coordinate of a vertex position . |
25,108 | public float getPositionY ( int vertex ) { if ( ! hasPositions ( ) ) { throw new IllegalStateException ( "mesh has no positions" ) ; } checkVertexIndexBounds ( vertex ) ; return m_vertices . getFloat ( ( vertex * 3 + 1 ) * SIZEOF_FLOAT ) ; } | Returns the y - coordinate of a vertex position . |
25,109 | public float getPositionZ ( int vertex ) { if ( ! hasPositions ( ) ) { throw new IllegalStateException ( "mesh has no positions" ) ; } checkVertexIndexBounds ( vertex ) ; return m_vertices . getFloat ( ( vertex * 3 + 2 ) * SIZEOF_FLOAT ) ; } | Returns the z - coordinate of a vertex position . |
25,110 | public float getNormalX ( int vertex ) { if ( ! hasNormals ( ) ) { throw new IllegalStateException ( "mesh has no normals" ) ; } checkVertexIndexBounds ( vertex ) ; return m_normals . getFloat ( vertex * 3 * SIZEOF_FLOAT ) ; } | Returns the x - coordinate of a vertex normal . |
25,111 | public float getNormalY ( int vertex ) { if ( ! hasNormals ( ) ) { throw new IllegalStateException ( "mesh has no normals" ) ; } checkVertexIndexBounds ( vertex ) ; return m_normals . getFloat ( ( vertex * 3 + 1 ) * SIZEOF_FLOAT ) ; } | Returns the y - coordinate of a vertex normal . |
25,112 | public float getNormalZ ( int vertex ) { if ( ! hasNormals ( ) ) { throw new IllegalStateException ( "mesh has no normals" ) ; } checkVertexIndexBounds ( vertex ) ; return m_normals . getFloat ( ( vertex * 3 + 2 ) * SIZEOF_FLOAT ) ; } | Returns the z - coordinate of a vertex normal . |
25,113 | public float getTangentY ( int vertex ) { if ( ! hasTangentsAndBitangents ( ) ) { throw new IllegalStateException ( "mesh has no bitangents" ) ; } checkVertexIndexBounds ( vertex ) ; return m_tangents . getFloat ( ( vertex * 3 + 1 ) * SIZEOF_FLOAT ) ; } | Returns the y - coordinate of a vertex bitangent . |
25,114 | public float getBitangentY ( int vertex ) { if ( ! hasTangentsAndBitangents ( ) ) { throw new IllegalStateException ( "mesh has no bitangents" ) ; } checkVertexIndexBounds ( vertex ) ; return m_bitangents . getFloat ( ( vertex * 3 + 1 ) * SIZEOF_FLOAT ) ; } | Returns the y - coordinate of a vertex tangent . |
25,115 | public float getColorR ( int vertex , int colorset ) { if ( ! hasColors ( colorset ) ) { throw new IllegalStateException ( "mesh has no colorset " + colorset ) ; } checkVertexIndexBounds ( vertex ) ; return m_colorsets [ colorset ] . getFloat ( vertex * 4 * SIZEOF_FLOAT ) ; } | Returns the red color component of a color from a vertex color set . |
25,116 | public float getTexCoordU ( int vertex , int coords ) { if ( ! hasTexCoords ( coords ) ) { throw new IllegalStateException ( "mesh has no texture coordinate set " + coords ) ; } checkVertexIndexBounds ( vertex ) ; return m_texcoords [ coords ] . getFloat ( vertex * m_numUVComponents [ coords ] * SIZEOF_FLOAT ) ; } | Returns the u component of a coordinate from a texture coordinate set . |
25,117 | @ SuppressWarnings ( "WeakerAccess" ) public String getProperty ( Enum < ? > key , boolean lowerCase ) { final String keyName ; if ( lowerCase ) { keyName = key . name ( ) . toLowerCase ( Locale . ENGLISH ) ; } else { keyName = key . name ( ) ; } return getProperty ( keyName ) ; } | Gets the property by key converted to lowercase if requested |
25,118 | public JSONObject toJSON ( ) { try { return new JSONObject ( properties ) . putOpt ( "name" , getName ( ) ) ; } catch ( JSONException e ) { e . printStackTrace ( ) ; Log . e ( TAG , e , "toJSON()" ) ; throw new RuntimeAssertion ( "NodeEntry.toJSON() failed for '%s'" , this ) ; } } | Converts the node to JSON |
25,119 | public void onRotationSensor ( long timeStamp , float rotationW , float rotationX , float rotationY , float rotationZ , float gyroX , float gyroY , float gyroZ ) { GVRCameraRig cameraRig = null ; if ( mMainScene != null ) { cameraRig = mMainScene . getMainCameraRig ( ) ; } if ( cameraRig != null ) { cameraRig . setRota... | Called to reset current sensor data . |
25,120 | protected synchronized void setStream ( InputStream s ) { if ( stream != null ) { throw new UnsupportedOperationException ( "Cannot set the stream of an open resource" ) ; } stream = s ; streamState = StreamStates . OPEN ; } | Sets the stream for a resource . This function allows you to provide a stream that is already open to an existing resource . It will throw an exception if that resource already has an open stream . |
25,121 | public synchronized final void closeStream ( ) { try { if ( ( stream != null ) && ( streamState == StreamStates . OPEN ) ) { stream . close ( ) ; stream = null ; } streamState = StreamStates . CLOSED ; } catch ( IOException e ) { e . printStackTrace ( ) ; } } | Close the open stream . |
25,122 | public String getResourcePath ( ) { switch ( resourceType ) { case ANDROID_ASSETS : return assetPath ; case ANDROID_RESOURCE : return resourceFilePath ; case LINUX_FILESYSTEM : return filePath ; case NETWORK : return url . getPath ( ) ; case INPUT_STREAM : return inputStreamName ; default : return null ; } } | Returns the full path of the resource file with extension . |
25,123 | public String getResourceFilename ( ) { switch ( resourceType ) { case ANDROID_ASSETS : return assetPath . substring ( assetPath . lastIndexOf ( File . separator ) + 1 ) ; case ANDROID_RESOURCE : return resourceFilePath . substring ( resourceFilePath . lastIndexOf ( File . separator ) + 1 ) ; case LINUX_FILESYSTEM : re... | Returns the filename of the resource with extension . |
25,124 | public void loadModel ( GVRAndroidResource avatarResource ) { EnumSet < GVRImportSettings > settings = GVRImportSettings . getRecommendedSettingsWith ( EnumSet . of ( GVRImportSettings . OPTIMIZE_GRAPH , GVRImportSettings . NO_ANIMATION ) ) ; GVRContext ctx = mAvatarRoot . getGVRContext ( ) ; GVRResourceVolume volume =... | Load the avatar base model |
25,125 | public void loadModel ( GVRAndroidResource avatarResource , String attachBone ) { EnumSet < GVRImportSettings > settings = GVRImportSettings . getRecommendedSettingsWith ( EnumSet . of ( GVRImportSettings . OPTIMIZE_GRAPH , GVRImportSettings . NO_ANIMATION ) ) ; GVRContext ctx = mAvatarRoot . getGVRContext ( ) ; GVRRes... | Load a model to attach to the avatar |
25,126 | public void loadAnimation ( GVRAndroidResource animResource , String boneMap ) { String filePath = animResource . getResourcePath ( ) ; GVRContext ctx = mAvatarRoot . getGVRContext ( ) ; GVRResourceVolume volume = new GVRResourceVolume ( ctx , animResource ) ; if ( filePath . endsWith ( ".bvh" ) ) { GVRAnimator animato... | Load an animation for the current avatar . |
25,127 | public void start ( String name ) { GVRAnimator anim = findAnimation ( name ) ; if ( name . equals ( anim . getName ( ) ) ) { start ( anim ) ; return ; } } | Starts the named animation . |
25,128 | public GVRAnimator findAnimation ( String name ) { for ( GVRAnimator anim : mAnimations ) { if ( name . equals ( anim . getName ( ) ) ) { return anim ; } } return null ; } | Find the animation associated with this avatar with the given name . |
25,129 | public GVRAnimator start ( int animIndex ) { if ( ( animIndex < 0 ) || ( animIndex >= mAnimations . size ( ) ) ) { throw new IndexOutOfBoundsException ( "Animation index out of bounds" ) ; } GVRAnimator anim = mAnimations . get ( animIndex ) ; start ( anim ) ; return anim ; } | Starts the animation with the given index . |
25,130 | public GVRAnimator animate ( int animIndex , float timeInSec ) { if ( ( animIndex < 0 ) || ( animIndex >= mAnimations . size ( ) ) ) { throw new IndexOutOfBoundsException ( "Animation index out of bounds" ) ; } GVRAnimator anim = mAnimations . get ( animIndex ) ; anim . animate ( timeInSec ) ; return anim ; } | Evaluates the animation with the given index at the specified time . |
25,131 | public void stop ( ) { synchronized ( mAnimQueue ) { if ( mIsRunning && ( mAnimQueue . size ( ) > 0 ) ) { mIsRunning = false ; GVRAnimator animator = mAnimQueue . get ( 0 ) ; mAnimQueue . clear ( ) ; animator . stop ( ) ; } } } | Stops the currently running animation if any . |
25,132 | public GVRTexture getSplashTexture ( GVRContext gvrContext ) { Bitmap bitmap = BitmapFactory . decodeResource ( gvrContext . getContext ( ) . getResources ( ) , R . drawable . __default_splash_screen__ ) ; GVRTexture tex = new GVRTexture ( gvrContext ) ; tex . setImage ( new GVRBitmapImage ( gvrContext , bitmap ) ) ; r... | Override this method to supply a custom splash screen image . |
25,133 | public void onSplashScreenCreated ( GVRSceneObject splashScreen ) { GVRTransform transform = splashScreen . getTransform ( ) ; transform . setPosition ( 0 , 0 , DEFAULT_SPLASH_Z ) ; } | Override this method to change the default splash screen size or position . |
25,134 | public void setPosition ( float x , float y , float z ) { if ( isActive ( ) ) { mIODevice . setPosition ( x , y , z ) ; } } | Set a new Cursor position if active and enabled . |
25,135 | void close ( ) { mIODevice = null ; GVRSceneObject owner = getOwnerObject ( ) ; if ( owner . getParent ( ) != null ) { owner . getParent ( ) . removeChildObject ( owner ) ; } } | Perform all Cursor cleanup here . |
25,136 | public GVRMesh findMesh ( GVRSceneObject model ) { class MeshFinder implements GVRSceneObject . ComponentVisitor { private GVRMesh meshFound = null ; public GVRMesh getMesh ( ) { return meshFound ; } public boolean visit ( GVRComponent comp ) { GVRRenderData rdata = ( GVRRenderData ) comp ; meshFound = rdata . getMesh ... | Finds the first mesh in the given model . |
25,137 | public boolean invokeFunction ( String funcName , Object [ ] params ) { checkDirty ( ) ; if ( isBadFunction ( funcName ) ) { return false ; } String statement = getInvokeStatementCached ( funcName , params ) ; synchronized ( mEngineLock ) { localBindings = mLocalEngine . getBindings ( ScriptContext . ENGINE_SCOPE ) ; i... | Invokes a function defined in the script . |
25,138 | private boolean isInInnerCircle ( float x , float y ) { return GearWearableUtility . isInCircle ( x , y , CENTER_X , CENTER_Y , INNER_RADIUS ) ; } | Check if position is in inner circle |
25,139 | @ SuppressWarnings ( "unchecked" ) public < V3 , M4 , C , N , Q > V3 getUp ( AiWrapperProvider < V3 , M4 , C , N , Q > wrapperProvider ) { return ( V3 ) m_up ; } | Returns the Up - vector of the camera coordinate system . |
25,140 | public void dispatchKeyEvent ( int code , int action ) { int keyCode = 0 ; int keyAction = 0 ; if ( code == BUTTON_1 ) { keyCode = KeyEvent . KEYCODE_BUTTON_1 ; } else if ( code == BUTTON_2 ) { keyCode = KeyEvent . KEYCODE_BUTTON_2 ; } if ( action == ACTION_DOWN ) { keyAction = KeyEvent . ACTION_DOWN ; } else if ( acti... | Synthesize and forward a KeyEvent to the library . |
25,141 | void setState ( final WidgetState . State state ) { Log . d ( TAG , "setState(%s): state is %s, setting to %s" , mWidget . getName ( ) , mState , state ) ; if ( state != mState ) { final WidgetState . State nextState = getNextState ( state ) ; Log . d ( TAG , "setState(%s): next state '%s'" , mWidget . getName ( ) , ne... | Sets current state |
25,142 | public void setEnable ( boolean flag ) { if ( mEnabled == flag ) { return ; } mEnabled = flag ; if ( flag ) { mContext . registerDrawFrameListener ( this ) ; mContext . getApplication ( ) . getEventReceiver ( ) . addListener ( this ) ; mAudioEngine . resume ( ) ; } else { mContext . unregisterDrawFrameListener ( this )... | Enables or disables sound . When sound is disabled nothing is played but the audio sources remain intact . |
25,143 | public void addSource ( GVRAudioSource audioSource ) { synchronized ( mAudioSources ) { if ( ! mAudioSources . contains ( audioSource ) ) { audioSource . setListener ( this ) ; mAudioSources . add ( audioSource ) ; } } } | Adds an audio source to the audio manager . An audio source cannot be played unless it is added to the audio manager . A source cannot be added twice . |
25,144 | public void removeSource ( GVRAudioSource audioSource ) { synchronized ( mAudioSources ) { audioSource . setListener ( null ) ; mAudioSources . remove ( audioSource ) ; } } | Removes an audio source from the audio manager . |
25,145 | public void clearSources ( ) { synchronized ( mAudioSources ) { for ( GVRAudioSource source : mAudioSources ) { source . setListener ( null ) ; } mAudioSources . clear ( ) ; } } | Remove all of the audio sources from the audio manager . This will stop all sound from playing . |
25,146 | private float [ ] generateParticleTimeStamps ( float totalTime ) { float timeStamps [ ] = new float [ mEmitRate * 2 ] ; if ( burstMode ) { for ( int i = 0 ; i < mEmitRate * 2 ; i += 2 ) { timeStamps [ i ] = totalTime ; timeStamps [ i + 1 ] = 0 ; } } else { for ( int i = 0 ; i < mEmitRate * 2 ; i += 2 ) { timeStamps [ i... | Generate random time stamps from the current time upto the next one second . Passed as texture coordinates to the vertex shader ; an unused field is present with every pair passed . |
25,147 | private float [ ] generateParticleVelocities ( ) { float [ ] particleVelocities = new float [ mEmitRate * 3 ] ; Vector3f temp = new Vector3f ( 0 , 0 , 0 ) ; for ( int i = 0 ; i < mEmitRate * 3 ; i += 3 ) { temp . x = mParticlePositions [ i ] ; temp . y = mParticlePositions [ i + 1 ] ; temp . z = mParticlePositions [ i ... | Generate random velocities for every particle . The direction is obtained by assuming the position of a particle as a vector . This normalised vector is scaled by the speed range . |
25,148 | public static void launchPermissionSettings ( Activity activity ) { Intent intent = new Intent ( ) ; intent . setAction ( Settings . ACTION_APPLICATION_DETAILS_SETTINGS ) ; intent . setData ( Uri . fromParts ( "package" , activity . getPackageName ( ) , null ) ) ; activity . startActivity ( intent ) ; } | Launch Application Setting to grant permission . |
25,149 | public void setFromJSON ( Context context , JSONObject properties ) { String backgroundResStr = optString ( properties , Properties . background ) ; if ( backgroundResStr != null && ! backgroundResStr . isEmpty ( ) ) { final int backgroundResId = getId ( context , backgroundResStr , "drawable" ) ; setBackGround ( conte... | Set text parameters from properties |
25,150 | public void onLayoutApplied ( final WidgetContainer container , final Vector3Axis viewPortSize ) { mContainer = container ; mViewPort . setSize ( viewPortSize ) ; if ( mContainer != null ) { mContainer . onLayoutChanged ( this ) ; } } | Called when the layout is applied to the data |
25,151 | public void invalidate ( ) { synchronized ( mMeasuredChildren ) { Log . d ( Log . SUBSYSTEM . LAYOUT , TAG , "invalidate all [%d]" , mMeasuredChildren . size ( ) ) ; mMeasuredChildren . clear ( ) ; } } | Invalidate layout setup . |
25,152 | public void invalidate ( final int dataIndex ) { synchronized ( mMeasuredChildren ) { Log . d ( Log . SUBSYSTEM . LAYOUT , TAG , "invalidate [%d]" , dataIndex ) ; mMeasuredChildren . remove ( dataIndex ) ; } } | Invalidate the item in layout |
25,153 | public float getChildSize ( final int dataIndex , final Axis axis ) { float size = 0 ; Widget child = mContainer . get ( dataIndex ) ; if ( child != null ) { switch ( axis ) { case X : size = child . getLayoutWidth ( ) ; break ; case Y : size = child . getLayoutHeight ( ) ; break ; case Z : size = child . getLayoutDept... | Calculate the child size along the axis |
25,154 | public float getSize ( final Axis axis ) { float size = 0 ; if ( mViewPort != null && mViewPort . isClippingEnabled ( axis ) ) { size = mViewPort . get ( axis ) ; } else if ( mContainer != null ) { size = getSizeImpl ( axis ) ; } return size ; } | Calculate the layout container size along the axis |
25,155 | public void setDividerPadding ( float padding , final Axis axis ) { if ( ! equal ( mDividerPadding . get ( axis ) , padding ) ) { mDividerPadding . set ( padding , axis ) ; if ( mContainer != null ) { mContainer . onLayoutChanged ( this ) ; } } } | Set the amount of padding between child objects . |
25,156 | public void setOffset ( float offset , final Axis axis ) { if ( ! equal ( mOffset . get ( axis ) , offset ) ) { mOffset . set ( offset , axis ) ; if ( mContainer != null ) { mContainer . onLayoutChanged ( this ) ; } } } | Set the amount of offset between child objects and parent . |
25,157 | public synchronized Widget measureChild ( final int dataIndex , boolean calculateOffset ) { Log . d ( Log . SUBSYSTEM . LAYOUT , TAG , "measureChild dataIndex = %d" , dataIndex ) ; Widget widget = mContainer . get ( dataIndex ) ; if ( widget != null ) { synchronized ( mMeasuredChildren ) { mMeasuredChildren . add ( dat... | Calculate the child size along the axis and measure the offset inside the layout container |
25,158 | public boolean measureAll ( List < Widget > measuredChildren ) { boolean changed = false ; for ( int i = 0 ; i < mContainer . size ( ) ; ++ i ) { if ( ! isChildMeasured ( i ) ) { Widget child = measureChild ( i , false ) ; if ( child != null ) { if ( measuredChildren != null ) { measuredChildren . add ( child ) ; } cha... | Measure all children from container if needed |
25,159 | public void layoutChildren ( ) { Set < Integer > copySet ; synchronized ( mMeasuredChildren ) { Log . d ( Log . SUBSYSTEM . LAYOUT , TAG , "layoutChildren [%d] layout = %s" , mMeasuredChildren . size ( ) , this ) ; copySet = new HashSet < > ( mMeasuredChildren ) ; } for ( int nextMeasured : copySet ) { Widget child = m... | Layout children inside the layout container |
25,160 | protected float getViewPortSize ( final Axis axis ) { float size = mViewPort == null ? 0 : mViewPort . get ( axis ) ; Log . d ( Log . SUBSYSTEM . LAYOUT , TAG , "getViewPortSize for %s %f mViewPort = %s" , axis , size , mViewPort ) ; return size ; } | Get viewport size along the axis |
25,161 | protected void layoutChild ( final int dataIndex ) { Widget child = mContainer . get ( dataIndex ) ; if ( child != null ) { float offset = mOffset . get ( Axis . X ) ; if ( ! equal ( offset , 0 ) ) { updateTransform ( child , Axis . X , offset ) ; } offset = mOffset . get ( Axis . Y ) ; if ( ! equal ( offset , 0 ) ) { ... | Position the child inside the layout based on the offset and axis - s factors |
25,162 | protected void postLayoutChild ( final int dataIndex ) { if ( ! mContainer . isDynamic ( ) ) { boolean visibleInLayout = ! mViewPort . isClippingEnabled ( ) || inViewPort ( dataIndex ) ; ViewPortVisibility visibility = visibleInLayout ? ViewPortVisibility . FULLY_VISIBLE : ViewPortVisibility . INVISIBLE ; Log . d ( Log... | Do post exam of child inside the layout after it has been positioned in parent |
25,163 | static GVRCollider lookup ( long nativePointer ) { synchronized ( sColliders ) { WeakReference < GVRCollider > weakReference = sColliders . get ( nativePointer ) ; return weakReference == null ? null : weakReference . get ( ) ; } } | Lookup a native pointer to a collider and return its Java object . |
25,164 | private void createSimpleCubeSixMeshes ( GVRContext gvrContext , boolean facingOut , String vertexDesc , ArrayList < GVRTexture > textureList ) { GVRSceneObject [ ] children = new GVRSceneObject [ 6 ] ; GVRMesh [ ] meshes = new GVRMesh [ 6 ] ; GVRVertexBuffer vbuf = new GVRVertexBuffer ( gvrContext , vertexDesc , SIMPL... | Creates a cube with each face as a separate mesh using a different texture . The meshes will share a common vertex array but will have separate index buffers . |
25,165 | protected void update ( float scale ) { GVRSceneObject owner = getOwnerObject ( ) ; if ( isEnabled ( ) && ( owner != null ) && owner . isEnabled ( ) ) { float w = getWidth ( ) ; float h = getHeight ( ) ; mPose . update ( mARPlane . getCenterPose ( ) , scale ) ; Matrix4f m = new Matrix4f ( ) ; m . set ( mPose . getPoseM... | Update the plane based on arcore best knowledge of the world |
25,166 | public void setValue ( Vector3f pos ) { mX = pos . x ; mY = pos . y ; mZ = pos . z ; } | Sets the position vector of the keyframe . |
25,167 | public void getKey ( int keyIndex , float [ ] values ) { int index = keyIndex * mFloatsPerKey ; System . arraycopy ( mKeys , index + 1 , values , 0 , values . length ) ; } | Returns the key value in the given array . |
25,168 | public void setKey ( int keyIndex , float time , final float [ ] values ) { int index = keyIndex * mFloatsPerKey ; Integer valSize = mFloatsPerKey - 1 ; if ( values . length != valSize ) { throw new IllegalArgumentException ( "This key needs " + valSize . toString ( ) + " float per value" ) ; } mKeys [ index ] = time ;... | Set the time and value of the key at the given index |
25,169 | public void resizeKeys ( int numKeys ) { int n = numKeys * mFloatsPerKey ; if ( mKeys . length == n ) { return ; } float [ ] newKeys = new float [ n ] ; n = Math . min ( n , mKeys . length ) ; System . arraycopy ( mKeys , 0 , newKeys , 0 , n ) ; mKeys = newKeys ; mFloatInterpolator . setKeyData ( mKeys ) ; } | Resize the key data area . This function will truncate the keys if the initial setting was too large . |
25,170 | public void setEnable ( boolean flag ) { if ( flag == mIsEnabled ) return ; mIsEnabled = flag ; if ( getNative ( ) != 0 ) { NativeComponent . setEnable ( getNative ( ) , flag ) ; } if ( flag ) { onEnable ( ) ; } else { onDisable ( ) ; } } | Enable or disable this component . |
25,171 | public void registerDatatype ( Class < ? extends GVRHybridObject > textureClass , AsyncLoaderFactory < ? extends GVRHybridObject , ? > asyncLoaderFactory ) { mFactories . put ( textureClass , asyncLoaderFactory ) ; } | Loaders call this method to register themselves . This method can be called by loaders provided by the application . |
25,172 | public void assertGLThread ( ) { if ( Thread . currentThread ( ) . getId ( ) != mGLThreadID ) { RuntimeException e = new RuntimeException ( "Should not run GL functions from a non-GL thread!" ) ; e . printStackTrace ( ) ; throw e ; } } | Throws an exception if the current thread is not a GL thread . |
25,173 | public void logError ( String message , Object sender ) { getEventManager ( ) . sendEvent ( this , IErrorEvents . class , "onError" , new Object [ ] { message , sender } ) ; } | Logs an error by sending an error event to all listeners . |
25,174 | public synchronized void stopDebugServer ( ) { if ( mDebugServer == null ) { Log . e ( TAG , "Debug server is not running." ) ; return ; } mDebugServer . shutdown ( ) ; mDebugServer = null ; } | Stops the current debug server . Active connections are not affected . |
25,175 | public void showToast ( final String message , float duration ) { final float quadWidth = 1.2f ; final GVRTextViewSceneObject toastSceneObject = new GVRTextViewSceneObject ( this , quadWidth , quadWidth / 5 , message ) ; toastSceneObject . setTextSize ( 6 ) ; toastSceneObject . setTextColor ( Color . WHITE ) ; toastSce... | Show a toast - like message for the specified duration |
25,176 | public void append ( float [ ] newValue ) { if ( ( newValue . length % 2 ) == 0 ) { for ( int i = 0 ; i < ( newValue . length / 2 ) ; i ++ ) { value . add ( new SFVec2f ( newValue [ i * 2 ] , newValue [ i * 2 + 1 ] ) ) ; } } else { Log . e ( TAG , "X3D MFVec3f append set with array length not divisible by 2" ) ; } } | Places a new value at the end of the existing value array increasing the field length accordingly . |
25,177 | public void insertValue ( int index , float [ ] newValue ) { if ( newValue . length == 2 ) { try { value . add ( index , new SFVec2f ( newValue [ 0 ] , newValue [ 1 ] ) ) ; } catch ( IndexOutOfBoundsException e ) { Log . e ( TAG , "X3D MFVec2f get1Value(index) out of bounds." + e ) ; } catch ( Exception e ) { Log . e (... | Insert a new value prior to the index location in the existing value array increasing the field length accordingly . |
25,178 | public void setOuterConeAngle ( float angle ) { setFloat ( "outer_cone_angle" , ( float ) Math . cos ( Math . toRadians ( angle ) ) ) ; mChanged . set ( true ) ; } | Set the inner angle of the spotlight cone in degrees . |
25,179 | public void setCastShadow ( boolean enableFlag ) { GVRSceneObject owner = getOwnerObject ( ) ; if ( owner != null ) { GVRShadowMap shadowMap = ( GVRShadowMap ) getComponent ( GVRRenderTarget . getComponentType ( ) ) ; if ( enableFlag ) { if ( shadowMap != null ) { shadowMap . setEnable ( true ) ; } else { float angle =... | Enables or disabled shadow casting for a spot light . Enabling shadows attaches a GVRShadowMap component to the GVRSceneObject which owns the light and provides the component with an perspective camera for shadow casting . |
25,180 | public GVRCursorController findCursorController ( GVRControllerType type ) { for ( int index = 0 , size = cache . size ( ) ; index < size ; index ++ ) { int key = cache . keyAt ( index ) ; GVRCursorController controller = cache . get ( key ) ; if ( controller . getControllerType ( ) . equals ( type ) ) { return control... | Get the first controller of a specified type |
25,181 | public int clear ( ) { int n = 0 ; for ( GVRCursorController c : controllers ) { c . stopDrag ( ) ; removeCursorController ( c ) ; ++ n ; } return n ; } | Remove all controllers but leave input manager running . |
25,182 | public void close ( ) { inputManager . unregisterInputDeviceListener ( inputDeviceListener ) ; mouseDeviceManager . forceStopThread ( ) ; gamepadDeviceManager . forceStopThread ( ) ; controllerIds . clear ( ) ; cache . clear ( ) ; controllers . clear ( ) ; } | Shut down the input manager . |
25,183 | private GVRCursorController getUniqueControllerId ( int deviceId ) { GVRCursorController controller = controllerIds . get ( deviceId ) ; if ( controller != null ) { return controller ; } return null ; } | returns null if no device is found . |
25,184 | private int getCacheKey ( InputDevice device , GVRControllerType controllerType ) { if ( controllerType != GVRControllerType . UNKNOWN && controllerType != GVRControllerType . EXTERNAL ) { int key = device . getVendorId ( ) ; key = 31 * key + device . getProductId ( ) ; key = 31 * key + controllerType . hashCode ( ) ; ... | Return the key if there is one else return - 1 |
25,185 | private GVRCursorController addDevice ( int deviceId ) { InputDevice device = inputManager . getInputDevice ( deviceId ) ; GVRControllerType controllerType = getGVRInputDeviceType ( device ) ; if ( mEnabledControllerTypes == null ) { return null ; } if ( controllerType == GVRControllerType . GAZE && ! mEnabledControlle... | returns controller if a new device is found |
25,186 | public List < GVRAtlasInformation > getAtlasInformation ( ) { if ( ( mImage != null ) && ( mImage instanceof GVRImageAtlas ) ) { return ( ( GVRImageAtlas ) mImage ) . getAtlasInformation ( ) ; } return null ; } | Returns the list of atlas information necessary to map the texture atlas to each scene object . |
25,187 | public void setImage ( final GVRImage imageData ) { mImage = imageData ; if ( imageData != null ) NativeTexture . setImage ( getNative ( ) , imageData , imageData . getNative ( ) ) ; else NativeTexture . setImage ( getNative ( ) , null , 0 ) ; } | Changes the image data associated with a GVRTexture . This can be a simple bitmap a compressed bitmap a cubemap or a compressed cubemap . |
25,188 | public static void sendEvent ( Context context , Parcelable event ) { Intent intent = new Intent ( EventManager . ACTION_ACCESSORY_EVENT ) ; intent . putExtra ( EventManager . EXTRA_EVENT , event ) ; context . sendBroadcast ( intent ) ; } | Send an event to other applications |
25,189 | public static AiScene importFile ( String filename ) throws IOException { return importFile ( filename , EnumSet . noneOf ( AiPostProcessSteps . class ) ) ; } | Imports a file via assimp without post processing . |
25,190 | public void addChannel ( String boneName , GVRAnimationChannel channel ) { int boneId = mSkeleton . getBoneIndex ( boneName ) ; if ( boneId >= 0 ) { mBoneChannels [ boneId ] = channel ; mSkeleton . setBoneOptions ( boneId , GVRSkeleton . BONE_ANIMATE ) ; Log . d ( "BONE" , "Adding animation channel %d %s " , boneId , b... | Add a channel to the animation to animate the named bone . |
25,191 | public GVRAnimationChannel findChannel ( String boneName ) { int boneId = mSkeleton . getBoneIndex ( boneName ) ; if ( boneId >= 0 ) { return mBoneChannels [ boneId ] ; } return null ; } | Find the channel in the animation that animates the named bone . |
25,192 | public void animate ( float timeInSec ) { GVRSkeleton skel = getSkeleton ( ) ; GVRPose pose = skel . getPose ( ) ; computePose ( timeInSec , pose ) ; skel . poseToBones ( ) ; skel . updateBonePose ( ) ; skel . updateSkinPose ( ) ; } | Compute pose of skeleton at the given time from the animation channels . |
25,193 | public void put ( GVRAndroidResource androidResource , T resource ) { Log . d ( TAG , "put resource %s to cache" , androidResource ) ; super . put ( androidResource , resource ) ; } | Save a weak reference to the resource |
25,194 | public void removeControl ( String name ) { Widget control = findChildByName ( name ) ; if ( control != null ) { removeChild ( control ) ; if ( mBgResId != - 1 ) { updateMesh ( ) ; } } } | Remove control from the control bar . Size of control bar is updated based on new number of controls . |
25,195 | public void addControl ( String name , JSONObject properties , Widget . OnTouchListener listener ) { final JSONObject allowedProperties = new JSONObject ( ) ; put ( allowedProperties , Widget . Properties . name , optString ( properties , Widget . Properties . name ) ) ; put ( allowedProperties , Widget . Properties . ... | Add new control at the end of control bar with specified touch listener . Size of control bar is updated based on new number of controls . |
25,196 | public Widget addControl ( String name , int resId , Widget . OnTouchListener listener ) { return addControl ( name , resId , null , listener , - 1 ) ; } | Add new control at the end of control bar with specified touch listener and resource . Size of control bar is updated based on new number of controls . |
25,197 | public Widget addControl ( String name , int resId , String label , Widget . OnTouchListener listener ) { return addControl ( name , resId , label , listener , - 1 ) ; } | Add new control at the end of control bar with specified touch listener control label and resource . Size of control bar is updated based on new number of controls . |
25,198 | public Widget addControl ( String name , int resId , Widget . OnTouchListener listener , int position ) { Widget control = findChildByName ( name ) ; if ( control == null ) { control = createControlWidget ( resId , name , null ) ; } setupControl ( name , control , listener , position ) ; return control ; } | Add new control at the control bar with specified touch listener resource and position . Size of control bar is updated based on new number of controls . |
25,199 | public void setMesh ( GVRMesh mesh ) { mMesh = mesh ; NativeMeshCollider . setMesh ( getNative ( ) , mesh . getNative ( ) ) ; } | Set the mesh to be tested against . |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.