14 lines
311 B
PHP
14 lines
311 B
PHP
<?PHP
|
||
declare(strict_types = 1);
|
||
$object_form_set = array (
|
||
'cube' => 'Куб',
|
||
'cuboid' => 'Кубовидный',
|
||
'sphere' => 'Сфера',
|
||
'cone' => 'Конус',
|
||
'cylinder' => 'Цилиндр',
|
||
'oval' => 'Oval',
|
||
'round' => 'Round',
|
||
'square' => 'Square',
|
||
'rectangular' => 'Rectangular',
|
||
);
|