|
def | __init__ (self, Xc, Yc, Zc, shift, indentationDepth) |
|
def | sDF (self, x, y, z) |
|
def | gradSdf (self, x, y, z) |
|
def | hessSdf (self, x, y, z) |
|
Definition at line 27 of file sdf_ydirection.py.
◆ __init__()
def sdf_ydirection.yPlane.__init__ |
( |
|
self, |
|
|
|
Xc, |
|
|
|
Yc, |
|
|
|
Zc, |
|
|
|
shift, |
|
|
|
indentationDepth |
|
) |
| |
Definition at line 28 of file sdf_ydirection.py.
28 def __init__(self,Xc,Yc,Zc,shift,indentationDepth):
44 self.depth = indentationDepth
◆ gradSdf()
def sdf_ydirection.yPlane.gradSdf |
( |
|
self, |
|
|
|
x, |
|
|
|
y, |
|
|
|
z |
|
) |
| |
Definition at line 50 of file sdf_ydirection.py.
50 def gradSdf(self, x, y, z):
51 dx = np.zeros_like(x).reshape((-1, 1))
52 dy = np.ones_like(y).reshape((-1, 1))
53 dz = np.zeros_like(z).reshape((-1, 1))
54 return np.hstack([dx, dy, dz])
◆ hessSdf()
def sdf_ydirection.yPlane.hessSdf |
( |
|
self, |
|
|
|
x, |
|
|
|
y, |
|
|
|
z |
|
) |
| |
Definition at line 56 of file sdf_ydirection.py.
56 def hessSdf(self, x, y, z):
57 zeros = np.zeros_like(x).reshape((-1, 1))
58 return np.hstack([zeros
for _
in range(6)])
◆ sDF()
def sdf_ydirection.yPlane.sDF |
( |
|
self, |
|
|
|
x, |
|
|
|
y, |
|
|
|
z |
|
) |
| |
Definition at line 47 of file sdf_ydirection.py.
47 def sDF(self, x, y, z):
48 return np.subtract(y,self.shift)
◆ depth
sdf_ydirection.yPlane.depth |
◆ shift
sdf_ydirection.yPlane.shift |
◆ Xc
◆ xc
◆ Yc
◆ yc
◆ Zc
◆ zc
The documentation for this class was generated from the following file: