Unlike the previous clipping example, this clipping example preserves surface normals.
16 lines
209 B
C++
16 lines
209 B
C++
namespace serial {
|
|
|
|
void init();
|
|
|
|
void character(const char c);
|
|
|
|
void string(const char * s);
|
|
|
|
template <typename T>
|
|
void integer(const T n, const char end);
|
|
|
|
template <typename T>
|
|
void integer(const T n);
|
|
|
|
}
|