v0.14.0
Loading...
Searching...
No Matches
Classes | Functions | Variables
sdf Namespace Reference

Classes

class  CylinderZ
 
class  Sphere
 
class  yPlane
 

Functions

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

Variables

int r = 1
 

Function Documentation

◆ grad_sdf()

def sdf.grad_sdf (   t,
  x,
  y,
  z,
  tx,
  ty,
  tz 
)

Definition at line 15 of file sdf.py.

15def grad_sdf(t, x, y, z, tx, ty, tz):
16 return [0, 0, 0]
17
18

◆ hess_sdf()

def sdf.hess_sdf (   t,
  x,
  y,
  z,
  tx,
  ty,
  tz 
)

Definition at line 19 of file sdf.py.

19def hess_sdf(t, x, y, z, tx, ty, tz):
20 return [0, 0, 0, 0, 0, 0]
21
22# Indenters
23

◆ sdf()

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

Definition at line 11 of file sdf.py.

11def sdf(t, x, y, z, tx, ty, tz):
12 return 1;
13
14
Definition: sdf.py:1

Variable Documentation

◆ r

int sdf.r = 1

Definition at line 8 of file sdf.py.