RefEll::RefEll PHP Méthode

RefEll() public méthode

Create a new RefEll object to represent a reference ellipsoid
public RefEll ( $maj, $min )
    function RefEll($maj, $min)
    {
        $this->maj = $maj;
        $this->min = $min;
        $this->ecc = ($maj * $maj - $min * $min) / ($maj * $maj);
    }
RefEll