Esempio n. 1
0
 public bool IsValid3DTransitionFeature(float theta, ComponentMaterials materials)
 {
     return(theta > _3DSharpFeatureProperties.minTransitionTheta);
 }
Esempio n. 2
0
 public bool IsSharp3DCornerFeature(float phi, ComponentMaterials materials)
 {
     return(phi > _3DSharpFeatureProperties.minCornerPhi);
 }
Esempio n. 3
0
 public bool IsSharp3DFeature(float theta, ComponentMaterials materials)
 {
     return(theta < _3DSharpFeatureProperties.maxFeatureTheta);
 }
 public bool IsValid3DTransitionFeature(float theta, ComponentMaterials materials)
 {
     return(theta > -0.999f);
 }
 public bool IsSharp3DCornerFeature(float phi, ComponentMaterials materials)
 {
     return(phi > 0.7f);
 }
 public bool IsSharp3DFeature(float theta, ComponentMaterials materials)
 {
     return(theta < 0.6f);
 }