v0.14.0
Classes | Functions | Variables
sdf_plane_3d Namespace Reference

Classes

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

float d = 0.00217384
 
int xc = 0
 
int yc = 0
 
int zc = 0
 

Function Documentation

◆ grad_sdf()

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

Definition at line 13 of file sdf_plane_3d.py.

13 def grad_sdf(delta_t, t, x, y, z, tx, ty, tz, block_id):
14  return zPlane.gradSdf(xc, yc, zc - d * t, x, y, z)
15 

◆ hess_sdf()

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

Definition at line 16 of file sdf_plane_3d.py.

16 def hess_sdf(delta_t, t, x, y, z, tx, ty, tz, block_id):
17  return zPlane.hessSdf(xc, yc, zc - d * t, x, y, z)
18 

◆ sdf()

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

Definition at line 10 of file sdf_plane_3d.py.

10 def sdf(delta_t, t, x, y, z, tx, ty, tz, block_id):
11  return zPlane.sDF(xc, yc, zc - d * t, x, y, z)
12 

Variable Documentation

◆ d

float sdf_plane_3d.d = 0.00217384

Definition at line 4 of file sdf_plane_3d.py.

◆ xc

int sdf_plane_3d.xc = 0

Definition at line 6 of file sdf_plane_3d.py.

◆ yc

int sdf_plane_3d.yc = 0

Definition at line 7 of file sdf_plane_3d.py.

◆ zc

int sdf_plane_3d.zc = 0

Definition at line 8 of file sdf_plane_3d.py.

sdf_plane_3d.grad_sdf
def grad_sdf(delta_t, t, x, y, z, tx, ty, tz, block_id)
Definition: sdf_plane_3d.py:13
sdf_plane_3d.sdf
def sdf(delta_t, t, x, y, z, tx, ty, tz, block_id)
Definition: sdf_plane_3d.py:10
sdf_plane_3d.hess_sdf
def hess_sdf(delta_t, t, x, y, z, tx, ty, tz, block_id)
Definition: sdf_plane_3d.py:16