Private class. Useful to check null materials.
...
Column |
---|
Inherits |
...
Friend classes
Cmaterial, CmaterialLayer, CmaterialEmitter, Creflectance, Ccoating and Cbsdf.
Inherits from
Inherited by
...
...
...
, Ccoating
...
and Cbsdf.
...
Examples
Code Block | |||||
---|---|---|---|---|---|
Code Block | |||||
| CmaterialLayer
| CmaterialEmitter
| Creflectance
Examples
| |
Cmaxwell::Cmaterial material = scene.createMaterial( "plastic" ); if( material.isNull() ) printf( "Error: material -plastic- not created" ); else printf( "Good news: material -plastic- created successfully" ); |
Code Block | ||
---|---|---|
| ||
material = scene.createMaterial( 'plastic' ); if material.isNull(): print( 'Error: material -plastic- not created' ); else: print( 'Good news: material -plastic- created successfully' ); |
...