mirror of
				https://bitbucket.org/mfeemster/fractorium.git
				synced 2025-11-03 17:50:27 -05:00 
			
		
		
		
	--User changes
-Allow locking of the scale at which affine circles are displayed. -Allow user to toggle whether xform will be animated when generating sequences. Also show the animate value when loading. --Code changes -More conversion to C++11 style code. -Add another value to the eXformUpdate enum called UPDATE_CURRENT_AND_SELECTED in anticipation of future work. -Remove some old #defines.
This commit is contained in:
		@ -64,17 +64,19 @@ public:
 | 
			
		||||
		D(T(affine.D()));
 | 
			
		||||
		E(T(affine.E()));
 | 
			
		||||
		F(T(affine.F()));
 | 
			
		||||
 | 
			
		||||
		return *this;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	bool operator == (const Affine2D<T>& affine);
 | 
			
		||||
	v2T operator * (const v2T& v);
 | 
			
		||||
	Affine2D<T> operator * (const T& t);
 | 
			
		||||
 | 
			
		||||
	void MakeID();
 | 
			
		||||
	bool IsID() const;
 | 
			
		||||
	bool IsZero() const;
 | 
			
		||||
	bool IsEmpty() const;
 | 
			
		||||
	void Scale(T amount);
 | 
			
		||||
	Affine2D<T> ScaleCopy(T amount);
 | 
			
		||||
	void Rotate(T angle);
 | 
			
		||||
	void Translate(const v2T& v);
 | 
			
		||||
	void RotateScaleXTo(const v2T& v);
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user