Online Help
This plugin adds further functions to the Math object.
Performs a inversion of all bits of the number passed as argument.
(number) A decimal number to invert.
(number) The converted number. You can use Application.GetLastError to determine whether this action failed, and why.
Performs a bitwise AND operation of two decimal numbers.
(number) The first operand.
(number) The second operand.
(number) The result of the bitwise operation. You can use Application.GetLastError to determine whether this action failed, and why.
Performs a bitwise OR operation of two decimal numbers.
(number) The first operand.
(number) The second operand.
(number) The result of the bitwise operation. You can use Application.GetLastError to determine whether this action failed, and why.
Performs a bitwise XOR (exclusive-or) operation of two decimal numbers.
(number) The first operand.
(number) The second operand.
(number) The result of the bitwise operation. You can use Application.GetLastError to determine whether this action failed, and why.
Performs a bitwise shift to the left of the decimal number. Shifting one bit to the left equals multiplying the number by two. The operation can cause overflows.
(number) The decimal number to be shifted left.
(number) The optional number of bits to shift. The default is shifting one bit to the left.
(number) The result of the bitwise operation. You can use Application.GetLastError to determine whether this action failed, and why.
Performs a bitwise shift to the right of the decimal number. Shifting one bit to the right equals dividing the number by two, by cutting off the less significative bit.
(number) The decimal number to be shifted right.
(number) The optional number of bits to shift. The default is shifting one bit to the right.
(number) The result of the bitwise operation. You can use Application.GetLastError to determine whether this action failed, and why.
Returns the equivalent hex value of a decimal value.
(number) The decimal value to be transformed into hexadecimal.
(string) The hexadecimal value corresponding to the decimal. You can use Application.GetLastError to determine whether this action failed, and why.
12065 - Failed to start Math Actions plugin.
Ulrich Peters
upeters@mindquake.com.br
Plugin is copyright © 2009 MindQuake Serviços de Informática Ltda.
Copyright © 2009 MindQuake Serviços de Informática Ltda.
Todos os direitos reservados.