KiCad PCB EDA Suite
Loading...
Searching...
No Matches
3d_info.h
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2015 Cirilo Bernardo <[email protected]>
5 * Copyright (C) 2015 Mario Luzeiro <[email protected]>
6 * Copyright (C) 2011 Wayne Stambaugh <[email protected]>
7 * Copyright (C) 2004 Jean-Pierre Charras, jp.charras at wanadoo.fr
8 * Copyright (C) 1992-2015 KiCad Developers, see AUTHORS.txt for contributors.
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version 2
13 * of the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, you may find one here:
22 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
23 * or you may search the http://www.gnu.org website for the version 2 license,
24 * or you may write to the Free Software Foundation, Inc.,
25 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
26 */
27
33#ifndef INFO_3D_H
34#define INFO_3D_H
35
36#include <wx/string.h>
38
39class FP_3DMODEL;
40
42{
44 S3D_INFO( const FP_3DMODEL& aModel );
45
49 wxString m_Filename;
50};
51
52#endif // INFO_3D_H
defines the low level classes common to scene graph nodes
SGPOINT m_Scale
scaling factors for the 3D footprint shape
Definition: 3d_info.h:46
wxString m_Filename
The 3D shape filename in 3D library.
Definition: 3d_info.h:49
SGPOINT m_Offset
an offset (unit = inch) for the 3D shape
Definition: 3d_info.h:48
S3D_INFO(const FP_3DMODEL &aModel)
SGPOINT m_Rotation
an X,Y,Z rotation (unit = degrees) for the 3D shape
Definition: 3d_info.h:47