-
-
Notifications
You must be signed in to change notification settings - Fork 93
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 aZcoordinate to thePointclass, see Point.cs -
USE_ATTRIBS: adds anAttributesarray to theVertexclass, see Vertex.cs -
SMOOTHER_DENSITY: adds aDensityfunction to theSimpleSmootherclass, see SimpleSmoother.cs