Skip to main content
. 2024 May 5;24(9):2933. doi: 10.3390/s24092933
Algorithm 2. Parametrized plate model with pores using CSG operations.
define plate (xp,yp,zp,…):
rotate ([90,90,90])
difference () {
rotate ([90,0,0])
cube([xp,yp,zp],center=true);
union () {
pore(…)
pore(…)

};
}