arrow_OBJimport

<< Click to Display Table of Contents >>

Navigation:  Sample Problems > Usage > CAD_Import >

arrow_OBJimport

Previous pageReturn to chapter overviewNext page

{ ARROW_OBJIMPORT.PDE

 

 This sample demonstrates the import of a bounding mesh in OBJ file format.

 It uses the MATERIALS section to tie the name stated

 in the OBJ file to FlexPDE properties.

 

 The OBJ file contains :

   one object named 'arrow' that will be bound to a material property set.

}

title 'Import OBJ Arrow'

 

coordinates cartesian3

 

materials 'arrow' : k=1

 

boundaries import OBJ 'arrow.obj'

 

plots grid(x,y,z)

 

end