v0.1.0
Fast, portable C library for geometry input/output
Main Page
Modules
Data Structures
Files
Examples
File List
Globals
All
Data Structures
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Modules
gmio_core
vecgeom.h
Go to the documentation of this file.
1
/****************************************************************************
2
** gmio
3
** Copyright Fougue (24 Jun. 2016)
4
** contact@fougue.pro
5
**
6
** This software is a reusable library whose purpose is to provide complete
7
** I/O support for various CAD file formats (eg. STL)
8
**
9
** This software is governed by the CeCILL-B license under French law and
10
** abiding by the rules of distribution of free software. You can use,
11
** modify and/ or redistribute the software under the terms of the CeCILL-B
12
** license as circulated by CEA, CNRS and INRIA at the following URL
13
** "http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html".
14
****************************************************************************/
15
23
#ifndef GMIO_CORE_VECGEOM_H
24
#define GMIO_CORE_VECGEOM_H
25
27
struct
gmio_vec3f
28
{
29
float
x
;
30
float
y
;
31
float
z
;
32
};
33
35
struct
gmio_vec3d
36
{
37
double
x
;
38
double
y
;
39
double
z
;
40
};
41
42
#endif
/* GMIO_CORE_VECGEOM_H */
43
gmio_vec3f::z
float z
Definition:
vecgeom.h:31
gmio_vec3f::y
float y
Definition:
vecgeom.h:30
gmio_vec3d::y
double y
Definition:
vecgeom.h:38
gmio_vec3d
Vector of three double coords.
Definition:
vecgeom.h:35
gmio_vec3f
Vector of three float coords.
Definition:
vecgeom.h:27
gmio_vec3f::x
float x
Definition:
vecgeom.h:29
gmio_vec3d::z
double z
Definition:
vecgeom.h:39
gmio_vec3d::x
double x
Definition:
vecgeom.h:37
Fougue © 2016
Last Update: Fri Jun 24 2016