*MdlFile()
Specifies the MDL file to be read into a *BeginModel() block.
Syntax
*MdlFile ("File Name")
Application
MotionView
Inputs
- "File Name"
- The complete path of the MDL file.
Context
*BeginModel()
*BeginPage()
*BeginWindow()
Example
*BeginWindow(Model)       
   *IsActive()
   *BeginModel()
        *MdlFile("/homes/auspexc/dmason/test.mdl")
        *BeginGraphic()
            *LightInfo(0, 0, 1, 0.5, 0.5, 0.5, 64)
            *RotationAngle(15)
        *EndGraphic()
   *EndModel()
*EndWindow()