Difference between revisions of "FixPt Tips"

From FM Plugin Wikipedia
Jump to: navigation, search
Line 4: Line 4:
  
 
This page is about editing and working with Numbers passed from FileMaker to your plugin.
 
This page is about editing and working with Numbers passed from FileMaker to your plugin.
 +
 +
 +
=FixPt Public Functions=
 +
*[[void AssignInt ( long int that )]]
 +
*[[void AssignDouble ( double that )]]
 +
*[[void AssignFixPt ( const FixPt &that )]]
 +
*[[bool operator == ( const FixPt &that ) const]]
 +
*[[bool operator != ( const FixPt &that ) const]]
 +
*[[bool operator  grtr ( const FixPt &that ) const]]
 +
*[[bool operator grtr= ( const FixPt &that ) const]]
 +
*[[bool operator  less ( const FixPt &that ) const]]
 +
*[[bool operator less= ( const FixPt &that ) const]]
 +
*[[void Increment ( long int n )]]
 +
*[[void Decrement ( long int n )]]
 +
*[[void Negate ()]]
 +
           
 +
 +
*[[int GetPrecision () const]]
 +
*[[void SetPrecision ( int precision )]]
 +
           
 +
*[[void Add ( const FixPt &arg, FixPt &result ) const]]
 +
*[[void Subtract ( const FixPt &arg, FixPt &result ) const]]
 +
*[[void Multiply ( const FixPt &arg, FixPt &result ) const]]
 +
*[[fmx::errcode Divide ( const FixPt &arg, FixPt &result ) const]]
 +
*[[bool AsBool () const]]
 +
*[[long int AsLong () const]]
 +
*[[double AsFloat () const]]
 +
*[[void operator delete ( void *obj )]]

Revision as of 23:46, 11 July 2007

This page is about editing and working with Numbers passed from FileMaker to your plugin.


FixPt Public Functions