-
-
Notifications
You must be signed in to change notification settings - Fork 86
Compile Options
Christian Woltering edited this page May 22, 2023
·
2 revisions
The following features can be enabled by either adding the relevant constants to the csproj files
<DefineConstants>USE_Z;SMOOTHER_DENSITY</DefineConstants>
or by passing them on the command line
dotnet build /p:DefineConstants="USE_Z%3BSMOOTHER_DENSITY"
-
USE_Z
: adds aZ
coordinate to thePoint
class, see Point.cs -
USE_ATTRIBS
: adds anAttributes
array to theVertex
class, see Vertex.cs -
SMOOTHER_DENSITY
: adds aDensity
function to theSimpleSmoother
class, see SimpleSmoother.cs