14 lines
279 B
PHP
14 lines
279 B
PHP
<?PHP
|
|
declare(strict_types = 1);
|
|
$object_form_set = array (
|
|
'cube' => 'Cube',
|
|
'cuboid' => 'Cuboid',
|
|
'sphere' => 'Sphere',
|
|
'cone' => 'Cone',
|
|
'cylinder' => 'Cylinder',
|
|
'oval' => 'Oval',
|
|
'round' => 'Round',
|
|
'square' => 'Square',
|
|
'rectangular' => 'Rectangular',
|
|
);
|