<?php class Vector { public $x, $y, $z, $w; public function __construct( $x, $y, $z, $w ) { $this->x = $x; $this->y = $y; $this->z = $z; $this->w = $w; } } ?>