Tachyon (current)  Current Main Branch
vol.h
Go to the documentation of this file.
1 /*
2  * vol.h - Volume rendering definitions etc.
3  *
4  * (C) Copyright 1994-2022 John E. Stone
5  * SPDX-License-Identifier: BSD-3-Clause
6  *
7  * $Id: vol.h,v 1.8 2022/02/18 17:55:28 johns Exp $
8  *
9  */
10 
11 void * newscalarvol(void * intex, vector min, vector max,
12  int xs, int ys, int zs,
13  const char * fname, scalarvol * invol);
14 
15 void LoadVol(scalarvol *);
16 color scalar_volume_texture(const vector *, const texture *, ray *);
17 
void LoadVol(scalarvol *)
Definition: vol.c:284
void * newscalarvol(void *intex, vector min, vector max, int xs, int ys, int zs, const char *fname, scalarvol *invol)
Definition: vol.c:48
color scalar_volume_texture(const vector *, const texture *, ray *)
Definition: vol.c:147