本文整理汇总了Java中com.panoramagl.enumerations.PLSensorialRotationType类的典型用法代码示例。如果您正苦于以下问题:Java PLSensorialRotationType类的具体用法?Java PLSensorialRotationType怎么用?Java PLSensorialRotationType使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
PLSensorialRotationType类属于com.panoramagl.enumerations包,在下文中一共展示了PLSensorialRotationType类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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();
}
示例11: getSensorialRotationType
import com.panoramagl.enumerations.PLSensorialRotationType; //导入依赖的package包/类
protected PLSensorialRotationType getSensorialRotationType()
{
return mSensorialRotationType;
}
示例12: getSensorialRotationType
import com.panoramagl.enumerations.PLSensorialRotationType; //导入依赖的package包/类
protected PLSensorialRotationType getSensorialRotationType() {
return mSensorialRotationType;
}
示例13: initializeValues
import com.panoramagl.enumerations.PLSensorialRotationType; //导入依赖的package包/类
/**init methods*/
protected void initializeValues()
{
mIsRendererCreated = false;
mIsValidForCameraAnimation = false;
mInternalCameraListener = new PLInternalCameraListener(this);
mAnimationInterval = PLConstants.kDefaultAnimationTimerInterval;
mAnimationFrameInterval = PLConstants.kDefaultAnimationFrameInterval;
mIsAnimating = false;
mStartPoint = CGPoint.CGPointMake(0.0f, 0.0f);
mEndPoint = CGPoint.CGPointMake(0.0f, 0.0f);
mAuxiliarStartPoint = CGPoint.CGPointMake(0.0f, 0.0f);
mAuxiliarEndPoint = CGPoint.CGPointMake(0.0f, 0.0f);
mIsAccelerometerEnabled = false;
mIsAccelerometerLeftRightEnabled = mIsAccelerometerUpDownEnabled = true;
mAccelerometerInterval = PLConstants.kDefaultAccelerometerInterval;
mAccelerometerSensitivity = PLConstants.kDefaultAccelerometerSensitivity;
mSensorialRotationType = PLSensorialRotationType.PLSensorialRotationTypeUnknow;
mIsScrollingEnabled = false;
mMinDistanceToEnableScrolling = PLConstants.kDefaultMinDistanceToEnableScrolling;
mMinDistanceToEnableDrawing = PLConstants.kDefaultMinDistanceToEnableDrawing;
mIsInertiaEnabled = false;
mInertiaInterval = PLConstants.kDefaultInertiaInterval;
mIsResetEnabled = true;
mIsShakeResetEnabled = false;
mNumberOfTouchesForReset = PLConstants.kDefaultNumberOfTouchesForReset;
mShakeData = PLShakeData.PLShakeDataMake(0);
mShakeThreshold = PLConstants.kShakeThreshold;
mIsValidForTransition = false;
mTouchStatus = PLTouchStatus.PLTouchStatusNone;
mCurrentDeviceOrientation = UIDeviceOrientation.UIDeviceOrientationPortrait;
mFileDownloaderManager = new PLFileDownloaderManager();
this.reset();
this.setPanorama(new PLBlankPanorama());
}
示例14: initializeValues
import com.panoramagl.enumerations.PLSensorialRotationType; //导入依赖的package包/类
/**init methods*/
protected void initializeValues() {
mIsRendererCreated = false;
mIsValidForCameraAnimation = false;
mInternalCameraListener = new PLInternalCameraListener(this);
mAnimationInterval = PLConstants.kDefaultAnimationTimerInterval;
mAnimationFrameInterval = PLConstants.kDefaultAnimationFrameInterval;
mIsAnimating = false;
mStartPoint = CGPoint.CGPointMake(0.0f, 0.0f);
mEndPoint = CGPoint.CGPointMake(0.0f, 0.0f);
mAuxiliarStartPoint = CGPoint.CGPointMake(0.0f, 0.0f);
mAuxiliarEndPoint = CGPoint.CGPointMake(0.0f, 0.0f);
mIsAccelerometerEnabled = false;
mIsAccelerometerLeftRightEnabled = mIsAccelerometerUpDownEnabled = true;
mAccelerometerInterval = PLConstants.kDefaultAccelerometerInterval;
mAccelerometerSensitivity = PLConstants.kDefaultAccelerometerSensitivity;
mSensorialRotationType = PLSensorialRotationType.PLSensorialRotationTypeUnknow;
mIsScrollingEnabled = false;
mMinDistanceToEnableScrolling = PLConstants.kDefaultMinDistanceToEnableScrolling;
mMinDistanceToEnableDrawing = PLConstants.kDefaultMinDistanceToEnableDrawing;
mIsInertiaEnabled = false;
mInertiaInterval = PLConstants.kDefaultInertiaInterval;
mIsResetEnabled = true;
mIsShakeResetEnabled = false;
mNumberOfTouchesForReset = PLConstants.kDefaultNumberOfTouchesForReset;
mShakeData = PLShakeData.PLShakeDataMake(0);
mShakeThreshold = PLConstants.kShakeThreshold;
mIsValidForTransition = false;
mTouchStatus = PLTouchStatus.PLTouchStatusNone;
mCurrentDeviceOrientation = UIDeviceOrientation.UIDeviceOrientationPortrait;
mFileDownloaderManager = new PLFileDownloaderManager();
mIsZoomEnabled = true;
this.reset();
this.setPanorama(new PLBlankPanorama());
}
示例15: initializeValues
import com.panoramagl.enumerations.PLSensorialRotationType; //导入依赖的package包/类
/**init methods*/
protected void initializeValues()
{
mIsRendererCreated = false;
mIsValidForCameraAnimation = false;
mInternalCameraListener = new PLInternalCameraListener(this);
mAnimationInterval = PLConstants.kDefaultAnimationTimerInterval;
mAnimationFrameInterval = PLConstants.kDefaultAnimationFrameInterval;
mIsAnimating = false;
mStartPoint = CGPoint.CGPointMake(0.0f, 0.0f);
mEndPoint = CGPoint.CGPointMake(0.0f, 0.0f);
mAuxiliarStartPoint = CGPoint.CGPointMake(0.0f, 0.0f);
mAuxiliarEndPoint = CGPoint.CGPointMake(0.0f, 0.0f);
mIsAccelerometerEnabled = false;
mIsAccelerometerLeftRightEnabled = mIsAccelerometerUpDownEnabled = true;
mAccelerometerInterval = PLConstants.kDefaultAccelerometerInterval;
mAccelerometerSensitivity = PLConstants.kDefaultAccelerometerSensitivity;
mSensorialRotationType = PLSensorialRotationType.PLSensorialRotationTypeUnknow;
mIsScrollingEnabled = false;
mMinDistanceToEnableScrolling = PLConstants.kDefaultMinDistanceToEnableScrolling;
mMinDistanceToEnableDrawing = PLConstants.kDefaultMinDistanceToEnableDrawing;
mIsInertiaEnabled = false;
mInertiaInterval = PLConstants.kDefaultInertiaInterval;
mIsResetEnabled = true;
mIsShakeResetEnabled = false;
mNumberOfTouchesForReset = PLConstants.kDefaultNumberOfTouchesForReset;
mShakeData = PLShakeData.PLShakeDataMake(0);
mShakeThreshold = PLConstants.kShakeThreshold;
mIsValidForTransition = false;
mTouchStatus = PLTouchStatus.PLTouchStatusNone;
mCurrentDeviceOrientation = UIDeviceOrientation.UIDeviceOrientationPortrait;
mFileDownloaderManager = new PLFileDownloaderManager();
mIsZoomEnabled = true;
this.reset();
this.setPanorama(new PLBlankPanorama());
}