本文整理汇总了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;
}
示例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;
}
示例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();
}
}
}
示例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();
}
示例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;
}
示例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;
}
示例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();
}
}
}
示例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;
}
示例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;
}
示例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();
}