2015-01-08 02:27:10 +02:00
|
|
|
/*
|
|
|
|
* slice.h - Generate slices
|
|
|
|
*
|
|
|
|
* Written 2015 by Werner Almesberger
|
|
|
|
* Copyright 2015 by Werner Almesberger
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef SLICE_H
|
|
|
|
#define SLICE_H
|
|
|
|
|
|
|
|
#include "stl.h"
|
|
|
|
|
|
|
|
|
|
|
|
void slice(struct v f[3]);
|
2015-01-08 14:53:52 +02:00
|
|
|
void slice_intermediate(float z_step);
|
2015-01-08 14:12:05 +02:00
|
|
|
void slice_dump(float box);
|
2015-01-08 02:27:10 +02:00
|
|
|
void slice_init(void);
|
|
|
|
|
|
|
|
#endif /* !SLICE_H */
|