IMathFunctionFactory
public interface IMathFunctionFactory
Allows to create a math function
For COM comparibility
Methods
Method | Description |
---|---|
createMathFunction(IMathElement funcName, IMathElement baseArgument) | Creates math function |
createMathFunction(String funcName, IMathElement baseArgument) | Creates math function |
createMathFunction(IMathElement funcName, IMathElement baseArgument)
public abstract IMathFunction createMathFunction(IMathElement funcName, IMathElement baseArgument)
Creates math function
Parameters:
Parameter | Type | Description |
---|---|---|
funcName | IMathElement | Element used as a function name |
baseArgument | IMathElement | Element used as a function argument |
Returns: IMathFunction - new math function
createMathFunction(String funcName, IMathElement baseArgument)
public abstract IMathFunction createMathFunction(String funcName, IMathElement baseArgument)
Creates math function
Parameters:
Parameter | Type | Description |
---|---|---|
funcName | java.lang.String | Function name |
baseArgument | IMathElement | Element used as a function argument |
Returns: IMathFunction - new math function