NAME
LaTeXML::Common::Number - representation of numbers; extends LaTeXML::Common::Object.
Exported functions
Methods
@tokens = $object->unlist;-
Return a list of the tokens making up this
$object. $string = $object->toString;-
Return a string representing
$object. $string = $object->ptValue;-
Return a value representing
$objectwithout the measurement unit (pt) with limited decimal places. $string = $object->pxValue;-
Return an integer value representing
$objectin pixels. Uses the state variableDPI(dots per inch). $n = $object->valueOf;-
Return the value in scaled points (ignoring shrink and stretch, if any).
$n = $object->smaller($other);-
Return
$objector$other, whichever is smaller $n = $object->larger($other);-
Return
$objector$other, whichever is larger $n = $object->absolute;-
Return an object representing the absolute value of the
$object. $n = $object->sign;-
Return an integer: -1 for negatives, 0 for 0 and 1 for positives
$n = $object->negate;-
Return an object representing the negative of the
$object. $n = $object->add($other);-
Return an object representing the sum of
$objectand$other $n = $object->subtract($other);-
Return an object representing the difference between
$objectand$other $n = $object->multiply($n);-
Return an object representing the product of
$objectand$n(a regular number). $n = $object->divide($n);-
Return an object representing the (truncating) division of
$objectby$n(a regular number). $n = $object->divideround($n);-
Return an object representing the (rounding) division of
$objectby$n(a regular number).
AUTHOR
Bruce Miller <bruce.miller@nist.gov>
COPYRIGHT
Public domain software, produced as part of work done by the United States Government & not subject to copyright in the US.