function get3Dfaces($data)
{
$result = array();
foreach($data['faces'] as $key => $value)
{
if(0 != $key)
{
$value = ltrim($value);
$value = rtrim($value);
$string=$value;
$face_length = substr($string,0,strpos($string,' '));
$regex=',(?x)
(?(DEFINE)(?<Cap>\((?>[^)]+\))))
(?>(?:-?\d\s){4}\([ ])
';
for($i=0; $i<$face_length; $i++)
{
$regex.='((?&Cap))\s';
}
$regex.=',';
if(preg_match($regex,$string,$match))
{
$result[] = $match;
}
}
}
return $result;
}