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


Java PLSensorialRotationType类代码示例

本文整理汇总了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;
}
 
开发者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

示例11: getSensorialRotationType

import com.panoramagl.enumerations.PLSensorialRotationType; //导入依赖的package包/类
protected PLSensorialRotationType getSensorialRotationType()
{
	return mSensorialRotationType;
}
 
开发者ID:codedavid,项目名称:PanoramaGL,代码行数:5,代码来源:PLView.java

示例12: getSensorialRotationType

import com.panoramagl.enumerations.PLSensorialRotationType; //导入依赖的package包/类
protected PLSensorialRotationType getSensorialRotationType() {
	return mSensorialRotationType;
}
 
开发者ID:marianmoldovan,项目名称:panoramagl,代码行数:4,代码来源:PLManager.java

示例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());
}
 
开发者ID:codedavid,项目名称:PanoramaGL,代码行数:53,代码来源:PLView.java

示例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());
}
 
开发者ID:marianmoldovan,项目名称:panoramagl,代码行数:54,代码来源:PLManager.java

示例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());
}
 
开发者ID:marianmoldovan,项目名称:panoramagl,代码行数:55,代码来源:PLView.java


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