<div dir="ltr"><div>Hi All,<br><br></div>Digging SFCGAL... .  Quick question-- is ST_MinkowskiSum a 2D calculation of the Minkowski Sum when non-polyhedral surfaces are fed in?  For example, I tried this:<br><br>
<style type="text/css">
p, li { white-space: pre-wrap; }
</style>
<p style="margin:0px;text-indent:0px">WITH pointt AS (</p>
<p style="margin:0px;text-indent:0px">  SELECT ST_MakePoint(0,0,0) AS the_geom</p>
<p style="margin:0px;text-indent:0px">),</p>
<p style="margin:0px;text-indent:0px">buffered AS (</p>
<p style="margin:0px;text-indent:0px">  SELECT ST_Buffer(the_geom, 30, 20) AS the_geom FROM pointt</p>
<p style="margin:0px;text-indent:0px">),</p>
<p style="margin:0px;text-indent:0px">rotatedOnItsSideX AS (</p>
<p style="margin:0px;text-indent:0px">  SELECT ST_RotateX(the_geom, 0.25 * pi()) AS the_geom from buffered</p>
<p style="margin:0px;text-indent:0px">),</p>
<p style="margin:0px;text-indent:0px">minkowski_sum AS (</p>
<p style="margin:0px;text-indent:0px">  SELECT ST_MinkowskiSum(x.the_geom, b.the_geom) AS the_geom FROM</p>
<p style="margin:0px;text-indent:0px">          rotatedOnItsSideX x, buffered b</p>
<p style="margin:0px;text-indent:0px">)</p>
<p style="margin:0px;text-indent:0px">SELECT 1 as gid, ST_AsText(the_geom) from minkowski_sum;</p><p style="margin:0px;text-indent:0px"><br></p></div>