Perspective constructor

Perspective(
  1. Spatial _camera,
  2. double _near,
  3. double _far, [
  4. String name = "perspective",
])

Implementation

Perspective(this._camera, this._near, this._far,
    [String name = "perspective"])
    : super(name) {
  Update();
}