Make override possible
This commit is contained in:
		
							parent
							
								
									8d3cfdfa51
								
							
						
					
					
						commit
						1f42253457
					
				@ -7,14 +7,17 @@ class Quadcopter : public Thing {
 | 
			
		||||
 public:
 | 
			
		||||
  Quadcopter();
 | 
			
		||||
 | 
			
		||||
	void LinearMotion(Vector3 velocity, float yawSpeed = 0.0F, float rollSpeed = 0.0);
 | 
			
		||||
  void LinearMotion(Vector3 velocity,
 | 
			
		||||
                    float yawSpeed = 0.0F,
 | 
			
		||||
                    float rollSpeed = 0.0);
 | 
			
		||||
  void SetTwistSpeed(float forward, float yaw, float pitch);
 | 
			
		||||
    void SetTwistSpeed(Vector3 velocity, float yawSpeed = 0.0F);
 | 
			
		||||
  virtual void SetTwistSpeed(Vector3 velocity, float yawSpeed = 0.0F);
 | 
			
		||||
 | 
			
		||||
  Vector3 GetTargetVelocity();
 | 
			
		||||
  float GetYawSpeed();
 | 
			
		||||
  float GetPitchSpeed();
 | 
			
		||||
  float GetRollSpeed();
 | 
			
		||||
 | 
			
		||||
 protected:
 | 
			
		||||
  Vector3 velocity = Vector3::zero;
 | 
			
		||||
  float pitchSpeed = 0.0F;
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user