コード例 #1
0
ファイル: al_ProtoApp.hpp プロジェクト: gitelope/AlloSystem
	/// This should still be called via ProtoApp::onAnimate(dt) if overridden
	virtual void onAnimate(double dt){
		lens().fovy(cnFOV.getValue());
	}
コード例 #2
0
ファイル: al_ProtoApp.hpp プロジェクト: gitelope/AlloSystem
	double gainFactor() const { float v=cnGain.getValue(); return v*v; }
コード例 #3
0
ファイル: al_ProtoApp.hpp プロジェクト: gitelope/AlloSystem
	double scaleFactor() const { return ::pow(2., cnScale.getValue()); }
コード例 #4
0
ファイル: al_ProtoApp.hpp プロジェクト: nathanw15/AlloSystem
 /// This should still be called via ProtoApp::onAnimate(dt) if overridden
 virtual void onAnimate(double dt) {
     lens()
     .near(cnNear.getValue())
     .far(cnFar.getValue())
     .fovy(cnFOV.getValue());
 }