当前位置: 首页>>代码示例>>Java>>正文


Java PLSensorialRotationType.PLSensorialRotationTypeGyroscope方法代码示例

本文整理汇总了Java中com.panoramagl.enumerations.PLSensorialRotationType.PLSensorialRotationTypeGyroscope方法的典型用法代码示例。如果您正苦于以下问题:Java PLSensorialRotationType.PLSensorialRotationTypeGyroscope方法的具体用法?Java PLSensorialRotationType.PLSensorialRotationTypeGyroscope怎么用?Java PLSensorialRotationType.PLSensorialRotationTypeGyroscope使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.panoramagl.enumerations.PLSensorialRotationType的用法示例。


在下文中一共展示了PLSensorialRotationType.PLSensorialRotationTypeGyroscope方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: stopSensorialRotation

import com.panoramagl.enumerations.PLSensorialRotationType; //导入方法依赖的package包/类
@Override
public boolean stopSensorialRotation()
{
    if(mIsValidForSensorialRotation)
    {
    	mIsValidForSensorialRotation = false;
    	if(mSensorialRotationType == PLSensorialRotationType.PLSensorialRotationTypeGyroscope)
        	this.deactivateGyroscope();
    	else if(mSensorialRotationType == PLSensorialRotationType.PLSensorialRotationTypeAccelerometerAndMagnetometer)
    	{
    		this.deactivateMagnetometer();
    		mSensorialRotationAccelerometerData = mSensorialRotationRotationMatrix = mSensorialRotationOrientationData = null;
    	}
    	mSensorialRotationType = PLSensorialRotationType.PLSensorialRotationTypeUnknow;
    	return true;
    }
    return false;
}
 
开发者ID:codedavid,项目名称:PanoramaGL,代码行数:19,代码来源:PLView.java

示例2: updateInitialSensorialRotation

import com.panoramagl.enumerations.PLSensorialRotationType; //导入方法依赖的package包/类
@Override
public boolean updateInitialSensorialRotation()
{
	if(mIsValidForSensorialRotation)
	{
		if(mSensorialRotationType == PLSensorialRotationType.PLSensorialRotationTypeGyroscope)
		{
			mHasFirstGyroscopePitch = false;
			return true;
		}
		else if(mSensorialRotationType == PLSensorialRotationType.PLSensorialRotationTypeAccelerometerAndMagnetometer)
		{
			mSensorialRotationThresholdTimestamp = 0;
			mSensorialRotationThresholdFlag = mHasFirstAccelerometerPitch = mHasFirstMagneticHeading = false;
			return true;
		}
	}
	return false;
}
 
开发者ID:codedavid,项目名称:PanoramaGL,代码行数:20,代码来源:PLView.java

示例3: onResume

import com.panoramagl.enumerations.PLSensorialRotationType; //导入方法依赖的package包/类
@Override
  protected void onResume()
  {
super.onResume();
if(mIsRendererCreated && mPanorama != null)
	this.startAnimation();
this.activateOrientation();
this.activateAccelerometer();
if(mIsValidForSensorialRotation)
{
	this.updateInitialSensorialRotation();
	if(mSensorialRotationType == PLSensorialRotationType.PLSensorialRotationTypeGyroscope)
		this.activateGyroscope();
	else if(mSensorialRotationType == PLSensorialRotationType.PLSensorialRotationTypeAccelerometerAndMagnetometer)
	{
		mSensorialRotationThresholdTimestamp = System.currentTimeMillis() + 1000;
		this.activateMagnetometer();
	}
}
  }
 
开发者ID:codedavid,项目名称:PanoramaGL,代码行数:21,代码来源:PLView.java

示例4: onPause

import com.panoramagl.enumerations.PLSensorialRotationType; //导入方法依赖的package包/类
@Override
protected void onPause()
{
	this.deactiveAccelerometer();
	this.deactiveOrientation();
	if(mIsValidForSensorialRotation)
	{
		if(mSensorialRotationType == PLSensorialRotationType.PLSensorialRotationTypeGyroscope)
			this.deactivateGyroscope();
		else if(mSensorialRotationType == PLSensorialRotationType.PLSensorialRotationTypeAccelerometerAndMagnetometer)
			this.deactivateMagnetometer();
	}
	if(mCurrentTransition != null)
		mCurrentTransition.end();
	this.stopAnimation();
	super.onPause();
}
 
开发者ID:codedavid,项目名称:PanoramaGL,代码行数:18,代码来源:PLView.java

示例5: stopSensorialRotation

import com.panoramagl.enumerations.PLSensorialRotationType; //导入方法依赖的package包/类
@Override
public boolean stopSensorialRotation() {
    if(mIsValidForSensorialRotation)
    {
    	mIsValidForSensorialRotation = false;
    	if(mSensorialRotationType == PLSensorialRotationType.PLSensorialRotationTypeGyroscope)
        	this.deactivateGyroscope();
    	else if(mSensorialRotationType == PLSensorialRotationType.PLSensorialRotationTypeAccelerometerAndMagnetometer)
    	{
    		this.deactivateMagnetometer();
    		mSensorialRotationAccelerometerData = mSensorialRotationRotationMatrix = mSensorialRotationOrientationData = null;
    	}
    	mSensorialRotationType = PLSensorialRotationType.PLSensorialRotationTypeUnknow;
    	return true;
    }
    return false;
}
 
开发者ID:marianmoldovan,项目名称:panoramagl,代码行数:18,代码来源:PLManager.java

示例6: updateInitialSensorialRotation

import com.panoramagl.enumerations.PLSensorialRotationType; //导入方法依赖的package包/类
@Override
public boolean updateInitialSensorialRotation() {
	if(mIsValidForSensorialRotation) {
		if(mSensorialRotationType == PLSensorialRotationType.PLSensorialRotationTypeGyroscope)
		{
			mHasFirstGyroscopePitch = false;
			return true;
		}
		else if(mSensorialRotationType == PLSensorialRotationType.PLSensorialRotationTypeAccelerometerAndMagnetometer)
		{
			mSensorialRotationThresholdTimestamp = 0;
			mSensorialRotationThresholdFlag = mHasFirstAccelerometerPitch = mHasFirstMagneticHeading = false;
			return true;
		}
	}
	return false;
}
 
开发者ID:marianmoldovan,项目名称:panoramagl,代码行数:18,代码来源:PLManager.java

示例7: onResume

import com.panoramagl.enumerations.PLSensorialRotationType; //导入方法依赖的package包/类
public void onResume() {
if(mIsRendererCreated && mPanorama != null)
	this.startAnimation();
this.activateOrientation();
this.activateAccelerometer();
if(mIsValidForSensorialRotation) {
	this.updateInitialSensorialRotation();
	if(mSensorialRotationType == PLSensorialRotationType.PLSensorialRotationTypeGyroscope)
		this.activateGyroscope();
	else if(mSensorialRotationType == PLSensorialRotationType.PLSensorialRotationTypeAccelerometerAndMagnetometer)
	{
		mSensorialRotationThresholdTimestamp = System.currentTimeMillis() + 1000;
		this.activateMagnetometer();
	}
}
  }
 
开发者ID:marianmoldovan,项目名称:panoramagl,代码行数:17,代码来源:PLManager.java

示例8: startSensorialRotation

import com.panoramagl.enumerations.PLSensorialRotationType; //导入方法依赖的package包/类
/**sensorial rotation methods*/

@Override
public boolean startSensorialRotation()
{
    if(!mIsValidForSensorialRotation)
    {
   		if(this.activateGyroscope())
    	{
   			mHasFirstGyroscopePitch = false;
    		mGyroscopeLastTime = 0;
    		mGyroscopeRotationX = mGyroscopeRotationY = 0.0f;
    		mSensorialRotationType = PLSensorialRotationType.PLSensorialRotationTypeGyroscope;
    		mIsValidForSensorialRotation = true;
    	}
   		else
   		{
   			PLLog.debug("PLView::startSensorialRotation", "Gyroscope sensor is not available on device!");
   			if(mSensorManager != null && mSensorManager.getSensorList(Sensor.TYPE_ACCELEROMETER).size() > 0 && mSensorManager.getSensorList(Sensor.TYPE_MAGNETIC_FIELD).size() > 0)
   			{
   				mSensorialRotationThresholdTimestamp = 0;
   				mSensorialRotationThresholdFlag = false;
   				mSensorialRotationAccelerometerData = new float[3];
   				mSensorialRotationRotationMatrix = new float[16];
   				mSensorialRotationOrientationData = new float[3];
   				mHasFirstAccelerometerPitch = mHasFirstMagneticHeading = false;
   				mFirstAccelerometerPitch = mLastAccelerometerPitch = mAccelerometerPitch = 0.0f;
   				mFirstMagneticHeading = mLastMagneticHeading = mMagneticHeading = 0.0f;
                mSensorialRotationType = PLSensorialRotationType.PLSensorialRotationTypeAccelerometerAndMagnetometer;
                mIsValidForSensorialRotation = true;
                this.activateMagnetometer();
            }
            else
            	PLLog.debug("PLView::startSensorialRotation", "Accelerometer or/and magnetometer sensor/s is/are not available on device!");
   		}
   		return mIsValidForSensorialRotation;
    }
    return false;
}
 
开发者ID:codedavid,项目名称:PanoramaGL,代码行数:40,代码来源:PLView.java

示例9: startSensorialRotation

import com.panoramagl.enumerations.PLSensorialRotationType; //导入方法依赖的package包/类
/**sensorial rotation methods*/

@Override
public boolean startSensorialRotation() {
    if(!mIsValidForSensorialRotation)
    {
   		if(this.activateGyroscope())
    	{
   			mHasFirstGyroscopePitch = false;
    		mGyroscopeLastTime = 0;
    		mGyroscopeRotationX = mGyroscopeRotationY = 0.0f;
    		mSensorialRotationType = PLSensorialRotationType.PLSensorialRotationTypeGyroscope;
    		mIsValidForSensorialRotation = true;
    	}
   		else
   		{
   			PLLog.debug("PLView::startSensorialRotation", "Gyroscope sensor is not available on device!");
   			if(mSensorManager != null && mSensorManager.getSensorList(Sensor.TYPE_ACCELEROMETER).size() > 0 && mSensorManager.getSensorList(Sensor.TYPE_MAGNETIC_FIELD).size() > 0)
   			{
   				mSensorialRotationThresholdTimestamp = 0;
   				mSensorialRotationThresholdFlag = false;
   				mSensorialRotationAccelerometerData = new float[3];
   				mSensorialRotationRotationMatrix = new float[16];
   				mSensorialRotationOrientationData = new float[3];
   				mHasFirstAccelerometerPitch = mHasFirstMagneticHeading = false;
   				mFirstAccelerometerPitch = mLastAccelerometerPitch = mAccelerometerPitch = 0.0f;
   				mFirstMagneticHeading = mLastMagneticHeading = mMagneticHeading = 0.0f;
                mSensorialRotationType = PLSensorialRotationType.PLSensorialRotationTypeAccelerometerAndMagnetometer;
                mIsValidForSensorialRotation = true;
                this.activateMagnetometer();
            }
            else
            	PLLog.debug("PLView::startSensorialRotation", "Accelerometer or/and magnetometer sensor/s is/are not available on device!");
   		}
   		return mIsValidForSensorialRotation;
    }
    return false;
}
 
开发者ID:marianmoldovan,项目名称:panoramagl,代码行数:39,代码来源:PLManager.java

示例10: onPause

import com.panoramagl.enumerations.PLSensorialRotationType; //导入方法依赖的package包/类
public void onPause() {
	this.deactiveAccelerometer();
	this.deactiveOrientation();
	if(mIsValidForSensorialRotation)
	{
		if(mSensorialRotationType == PLSensorialRotationType.PLSensorialRotationTypeGyroscope)
			this.deactivateGyroscope();
		else if(mSensorialRotationType == PLSensorialRotationType.PLSensorialRotationTypeAccelerometerAndMagnetometer)
			this.deactivateMagnetometer();
	}
	if(mCurrentTransition != null)
		mCurrentTransition.end();
	this.stopAnimation();
}
 
开发者ID:marianmoldovan,项目名称:panoramagl,代码行数:15,代码来源:PLManager.java


注:本文中的com.panoramagl.enumerations.PLSensorialRotationType.PLSensorialRotationTypeGyroscope方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。