حجم عناصر و مش

حجم عناصر و مش

حجم عناصر و مش
برای تعیین حداقل حجم، مساحت یا طول عنصر از یک نوع خاص، از روش getMinVolume استفاده کنید :
double model.component( <ctag> ).mesh( <tag> ).stat().getMinVolume( type );
double model.component( <ctag> ).mesh( <tag> ).stat().getMinVolume();
برای تعیین حداکثر حجم، مساحت یا طول عنصر از یک نوع خاص، از روش getMaxVolume استفاده کنید :
double model.component( <ctag> ).mesh( <tag> ).stat().getMaxVolume( type );
double model.component( <ctag> ).mesh( <tag> ).stat().getMaxVolume();
برای تعیین حجم، مساحت یا طول مش، از روش getVolume استفاده کنید :
double model.component( <ctag> ).mesh( <tag> ).stat().getVolume( type );
double model.component( <ctag> ).mesh( <tag> ).stat().getVolume();
روش های زیر مستقیماً روی دنباله موجود است و اطلاعات حجمی را در مورد کل هندسه ارائه می دهد:
double model.component( <ctag> ).mesh( <tag> ).getMinVolume( type );
double model.component( <ctag> ).mesh( <tag> ).getMinVolume();
double model.component( <ctag> ).mesh( <tag> ).getMaxVolume( type );
double model.component( <ctag> ).mesh( <tag> ).getMaxVolume();
double model.component( <ctag> ).mesh( <tag> ).getVolume( type );
double model.component( <ctag> ).mesh( <tag> ).getVolume();