normalizedVertices = $normalizedVertices;
}
/**
* @return NormalizedVertex[]
*/
public function getNormalizedVertices()
{
return $this->normalizedVertices;
}
/**
* @param Vertex[]
*/
public function setVertices($vertices)
{
$this->vertices = $vertices;
}
/**
* @return Vertex[]
*/
public function getVertices()
{
return $this->vertices;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(BoundingPoly::class, 'Google_Service_Vision_BoundingPoly');