Example #1
0
        protected CameraBuilder(CameraBuilder other)
            : base(other)
        {
            Guard.NotNull(other, nameof(other));

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