Revision 39b13612ebd645a65eda854771b517371f2f858a authored by ennetws on 13 March 2015, 18:17:18 UTC, committed by ennetws on 13 March 2015, 18:17:18 UTC
1 parent c702819
Raw File
hrbf_resampler.pro
include($$[STARLAB])
include($$[SURFACEMESH])
include($$[NANOFLANN])
StarlabTemplate(plugin)

# Build flag
CONFIG(debug, debug|release) {
    CFG = debug
} else {
    CFG = release
}

# Plugin code
HEADERS += hrbf_resampler.h
SOURCES += hrbf_resampler.cpp

# "Implicit surface reconstruction with HRBF" from Rodolphe Vaillant
# http://www.irit.fr/~Rodolphe.Vaillant/?e=12
HEADERS +=  hrbf/hrbf_core.h \
            hrbf/hrbf_phi_funcs.h

# Standard Marching Cubes
# http://graphics.stanford.edu/~mdfisher/MarchingCubes.html
HEADERS +=  mc/MarchingCubes.h

back to top