OpenMM
|
This is a TabulatedFunction that computes a discrete three dimensional function f(x,y,z). More...
Public Member Functions | |
def | __init__ |
__init__(self, xsize, ysize, zsize, values) -> Discrete3DFunction | |
def | getFunctionParameters |
def | setFunctionParameters |
def | Copy |
Copy(self) -> Discrete3DFunction. | |
Public Attributes | |
this |
This is a TabulatedFunction that computes a discrete three dimensional function f(x,y,z).
To evaluate it, x, y, and z are each rounded to the nearest integer and the table element with those indices is returned. If any index is outside the range [0, size), the result is undefined.
def __init__ | ( | self, | |
xsize, | |||
ysize, | |||
zsize, | |||
values | |||
) |
__init__(self, xsize, ysize, zsize, values) -> Discrete3DFunction
This is a TabulatedFunction that computes a discrete three dimensional function f(x,y,z). To evaluate it, x, y, and z are each rounded to the nearest integer and the table element with those indices is returned. If any index is outside the range [0, size), the result is undefined.
def Copy | ( | self | ) |
Copy(self) -> Discrete3DFunction.
Reimplemented from TabulatedFunction.
def getFunctionParameters | ( | self | ) |
def setFunctionParameters | ( | self, | |
xsize, | |||
ysize, | |||
zsize, | |||
values | |||
) |