v0.14.0
Classes | Functions | Variables
sdf_flat Namespace Reference

Classes

class  Sphere
 
class  zPlane
 

Functions

def sdf (delta_t, t, x, y, z, tx, ty, tz, block_id)
 
def grad_sdf (delta_t, t, x, y, z, tx, ty, tz, block_id)
 
def hess_sdf (delta_t, t, x, y, z, tx, ty, tz, block_id)
 

Variables

int R = 100
 
int d = 1
 
int xc = 0
 
int yc = 0
 
int zc = 0
 

Function Documentation

◆ grad_sdf()

def sdf_flat.grad_sdf (   delta_t,
  t,
  x,
  y,
  z,
  tx,
  ty,
  tz,
  block_id 
)

Definition at line 18 of file sdf_flat.py.

18 def grad_sdf(delta_t, t, x, y, z, tx, ty, tz, block_id):
19  if block_id == -1:
20  zeros = np.zeros_like(x)
21  zeros = zeros.reshape((-1,1))
22  grad_array = np.hstack([zeros, zeros, zeros])
23  return grad_array
24 
25  return zPlane.gradSdf(xc, yc, zc - d * t, x, y, z)
26 

◆ hess_sdf()

def sdf_flat.hess_sdf (   delta_t,
  t,
  x,
  y,
  z,
  tx,
  ty,
  tz,
  block_id 
)

Definition at line 27 of file sdf_flat.py.

27 def hess_sdf(delta_t, t, x, y, z, tx, ty, tz, block_id):
28  if block_id == -1:
29  zeros = np.zeros_like(x)
30  zeros = zeros.reshape((-1,1))
31  hess_array = np.hstack([zeros, zeros, zeros, zeros, zeros, zeros])
32  # xx, yx, zx, yy, zy, zz
33  return hess_array
34 
35  return zPlane.hessSdf(xc, yc, zc - d * t, x, y, z)
36 

◆ sdf()

def sdf_flat.sdf (   delta_t,
  t,
  x,
  y,
  z,
  tx,
  ty,
  tz,
  block_id 
)

Definition at line 11 of file sdf_flat.py.

11 def sdf(delta_t, t, x, y, z, tx, ty, tz, block_id):
12 
13  if block_id == -1:
14  return np.ones_like(x)
15 
16  return zPlane.sDF(xc, yc, zc - d * t, x, y, z)
17 

Variable Documentation

◆ d

int sdf_flat.d = 1

Definition at line 5 of file sdf_flat.py.

◆ R

int sdf_flat.R = 100

Definition at line 4 of file sdf_flat.py.

◆ xc

int sdf_flat.xc = 0

Definition at line 7 of file sdf_flat.py.

◆ yc

int sdf_flat.yc = 0

Definition at line 8 of file sdf_flat.py.

◆ zc

int sdf_flat.zc = 0

Definition at line 9 of file sdf_flat.py.

sdf_flat.sdf
def sdf(delta_t, t, x, y, z, tx, ty, tz, block_id)
Definition: sdf_flat.py:11
sdf_flat.grad_sdf
def grad_sdf(delta_t, t, x, y, z, tx, ty, tz, block_id)
Definition: sdf_flat.py:18
sdf_flat.hess_sdf
def hess_sdf(delta_t, t, x, y, z, tx, ty, tz, block_id)
Definition: sdf_flat.py:27