
Tue, 02/18/2025 - 21:18
Forums:
This was working with 7.7.0 and now I get an error with 7.9.0:
Graphic3d_PBRMaterial pbrMaterial;
pbrMaterial.SetEmission(Graphic3d_Vec3(0,0,0));
Graphic3d_BSDF bsdfGlass = Graphic3d_BSDF::CreateGlass(Graphic3d_Vec3(0,0,0), Graphic3d_Vec3(0,0,0), 0.5,0.5);
/*hangs now here -> */ pbrMaterial.SetBSDF(bsdfGlass);
Graphic3d_MaterialAspect materialAspect = Graphic3d_NOM_GLASS;
materialAspect.SetPBRMaterial(pbrMaterial);
aisGlass->SetMaterial(materialAspect);
the error:
terminate called after throwing an instance of 'Graphic3d_MaterialDefinitionError'
if I keep the line out the material will be the standard glass but I would like to control it.
Thanks for tips!
Tue, 02/18/2025 - 22:01
Hello. Could you please share the type of error (error message).
Looks like issue with bounds. Do you check 7.7 and 7.9 with the same Signal flags? With disabled exceptions in release, that error probably was ignored.
Best regards, Dmitrii.
Wed, 02/19/2025 - 09:57
You are trying to define material with
IOR=0.5
(refraction index):The valid range of refraction index is
[1.0, 3.0]
, hence you get constructor exception inGraphic3d_PBRMaterial::SetIOR()
on trying to set0.5
:Wed, 02/19/2025 - 21:08
Thanks for the answer but I am really lost now. The error comes at the line
and not by the one before. Also I tried
and it still doesn't work. But it was working with 7.7.0
Never mind - it is working now.
The Absorption coefficient was way to high
this is working perfect now.
Thank you both