Skip to content

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"

Options

  • USE_Z: adds a Z coordinate to the Point class, see Point.cs

  • USE_ATTRIBS: adds an Attributes array to the Vertex class, see Vertex.cs

  • SMOOTHER_DENSITY: adds a Density function to the SimpleSmoother class, see SimpleSmoother.cs

Clone this wiki locally