Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Version 6 and Version 7 of code/doc/MultiType


Ignore:
Timestamp:
Sep 25, 2008, 12:43:01 AM (16 years ago)
Author:
landauf
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • code/doc/MultiType

    v6 v7  
    4747=== Retrieve a value ===
    4848There are four three to retrieve a value from a !MultiType:
    49  * '''Implicit''' conversion: float value = myMT; (or float value = (float)myMT;)
     49 * '''Implicit''' conversion: float value = myMT; (or float value = (float)myMT;'''''''''')
    5050 * Get by pointer: '''getValue('''''pointer''''')''': float value = 0; myMT.getValue(&value);
    5151 * Explicit function call: '''getXXXX()''' float value = myMT.getFloat().