Exemplo n.º 1
0
        protected CameraBuilder(CameraBuilder other)
            : base(other)
        {
            Guard.NotNull(other, nameof(other));

            this.ZNear = other.ZNear;
            this.ZFar  = other.ZFar;
        }
Exemplo n.º 2
0
 protected CameraBuilder(CameraBuilder other)
     : base(other)
 {
     this.ZNear = other.ZNear;
     this.ZFar  = other.ZFar;
 }
Exemplo n.º 3
0
 public CameraContent(CameraBuilder camera)
 {
     _Camera = camera;
 }