Afterglow.Graphics.Cameras.Camera.Camera C# (CSharp) Method

Camera() public method

Initializes a new instance of the Camera class.
public Camera ( IStand stand, ILense lense ) : Afterglow.Math
stand IStand The stand which contains the view matrix.
lense ILense The lense which contains the projection matrix.
return Afterglow.Math
        public Camera(IStand stand, ILense lense)
        {
            Stand = stand;
            Lense = lense;
        }
Camera