2012-08-26 13:59:55 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
|
|
|
* Copyright (C) 1992-2012 KiCad Developers, see AUTHORS.txt for contributors.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file 3d_draw_basic_functions.h
|
|
|
|
*/
|
|
|
|
#ifndef _3D_DRAW_BASIC_FUNCTIONS_H_
|
|
|
|
#define _3D_DRAW_BASIC_FUNCTIONS_H_
|
|
|
|
|
|
|
|
// angle increment to draw a circle, approximated by segments
|
|
|
|
#define ANGLE_INC( x ) ( 3600 / (x) )
|
|
|
|
|
|
|
|
/** draw all solid polygons found in aPolysList
|
|
|
|
* @param aPolysList = the poligon list to draw
|
|
|
|
* @param aZpos = z position in board internal units
|
|
|
|
* @param aThickness = thickness in board internal units
|
|
|
|
* @param aBiuTo3DUnits = board internal units to 3D units scaling value
|
|
|
|
* If aThickness = 0, a polygon area is drawn in a XY plane at Z position = aZpos.
|
|
|
|
* If aThickness 1 0, a solid object is drawn.
|
|
|
|
* The top side is located at aZpos + aThickness / 2
|
|
|
|
* The bottom side is located at aZpos - aThickness / 2
|
|
|
|
*/
|
2013-05-03 17:51:10 +00:00
|
|
|
void Draw3D_SolidHorizontalPolyPolygons( const CPOLYGONS_LIST& aPolysList,
|
2012-08-26 13:59:55 +00:00
|
|
|
int aZpos, int aThickness, double aBiuTo3DUnits );
|
|
|
|
|
|
|
|
/** draw the solid polygon found in aPolysList
|
|
|
|
* The first polygonj is the main polygon, others are holes
|
|
|
|
* @param aPolysList = the polygon with holes to draw
|
|
|
|
* @param aZpos = z position in board internal units
|
|
|
|
* @param aThickness = thickness in board internal units
|
|
|
|
* @param aBiuTo3DUnits = board internal units to 3D units scaling value
|
|
|
|
* If aThickness = 0, a polygon area is drawn in a XY plane at Z position = aZpos.
|
2012-08-27 07:06:52 +00:00
|
|
|
* If aThickness > 0, a solid object is drawn.
|
2012-08-26 13:59:55 +00:00
|
|
|
* The top side is located at aZpos + aThickness / 2
|
|
|
|
* The bottom side is located at aZpos - aThickness / 2
|
|
|
|
*/
|
2013-05-03 17:51:10 +00:00
|
|
|
void Draw3D_SolidHorizontalPolygonWithHoles( const CPOLYGONS_LIST& aPolysList,
|
2012-08-26 13:59:55 +00:00
|
|
|
int aZpos, int aThickness, double aBiuTo3DUnits );
|
|
|
|
|
|
|
|
/** draw a thick segment using 3D primitives, in a XY plane
|
2012-09-12 11:11:30 +00:00
|
|
|
* @param aStart = YX position of start point in board units
|
|
|
|
* @param aEnd = YX position of end point in board units
|
2012-08-26 13:59:55 +00:00
|
|
|
* @param aWidth = width of segment in board units
|
|
|
|
* @param aThickness = thickness of segment in board units
|
|
|
|
* @param aZpos = z position of segment in board units
|
2012-08-26 18:10:28 +00:00
|
|
|
* @param aBiuTo3DUnits = board internal units to 3D units scaling value
|
2012-08-26 13:59:55 +00:00
|
|
|
* If aThickness = 0, a polygon area is drawn in a XY plane at Z position = aZpos.
|
2012-08-27 07:06:52 +00:00
|
|
|
* If aThickness > 0, a solid object is drawn.
|
2012-08-26 13:59:55 +00:00
|
|
|
* The top side is located at aZpos + aThickness / 2
|
|
|
|
* The bottom side is located at aZpos - aThickness / 2
|
|
|
|
*/
|
|
|
|
void Draw3D_SolidSegment( const wxPoint& aStart, const wxPoint& aEnd,
|
|
|
|
int aWidth, int aThickness, int aZpos,
|
|
|
|
double aBiuTo3DUnits );
|
|
|
|
|
2012-08-26 18:10:28 +00:00
|
|
|
/** draw an arc using 3D primitives, in a XY plane
|
|
|
|
* @param aCenterPos = XY position of the center in board units
|
|
|
|
* @param aStartPoint = start point coordinate of arc in board units
|
|
|
|
* @param aWidth = width of the circle in board units
|
2012-08-26 13:59:55 +00:00
|
|
|
* @param aArcAngle = arc angle in 1/10 degrees
|
|
|
|
* @param aWidth = thickness of arc
|
2012-08-26 18:10:28 +00:00
|
|
|
* @param aThickness = thickness of segment in board units
|
|
|
|
* @param aZpos = z position of segment in board units
|
|
|
|
* @param aBiuTo3DUnits = board internal units to 3D units scaling value
|
2012-08-26 13:59:55 +00:00
|
|
|
*/
|
2012-08-26 18:10:28 +00:00
|
|
|
void Draw3D_ArcSegment( const wxPoint& aCenterPos, const wxPoint& aStartPoint,
|
2013-05-05 07:17:48 +00:00
|
|
|
double aArcAngle, int aWidth, int aThickness,
|
2012-08-26 18:10:28 +00:00
|
|
|
int aZpos, double aBiuTo3DUnits );
|
2012-08-26 13:59:55 +00:00
|
|
|
|
|
|
|
|
|
|
|
/** draw a thick cylinder (a tube) using 3D primitives.
|
|
|
|
* the cylinder axis is parallel to the Z axis
|
2012-09-12 11:11:30 +00:00
|
|
|
* @param aCenterPos = XY position of the axis cylinder ( board internal units)
|
2012-08-26 13:59:55 +00:00
|
|
|
* @param aRadius = radius of the cylinder ( board internal units)
|
|
|
|
* @param aHeight = height of the cylinder ( boardinternal units)
|
|
|
|
* @param aThickness = tichkness of tube ( boardinternal units)
|
|
|
|
* @param aZpos = Z position of the bottom side of the cylinder ( board internal units)
|
|
|
|
* @param aBiuTo3DUnits = board internal units to 3D units scaling value
|
|
|
|
*
|
|
|
|
* If aHeight = height of the cylinder is 0, only one ring will be drawn
|
|
|
|
* If aThickness = 0, only one cylinder (not a tube) will be drawn
|
|
|
|
*/
|
|
|
|
void Draw3D_ZaxisCylinder( wxPoint aCenterPos, int aRadius,
|
|
|
|
int aHeight, int aThickness,
|
|
|
|
int aZpos, double aBiuTo3DUnits );
|
|
|
|
|
|
|
|
/** draw an oblong cylinder (oblong tube) using 3D primitives.
|
|
|
|
* the cylinder axis are parallel to the Z axis
|
|
|
|
* @param aAxis1Pos = position of the first axis cylinder
|
|
|
|
* @param aAxis2Pos = position of the second axis cylinder
|
|
|
|
* @param aRadius = radius of the cylinder ( board internal units )
|
|
|
|
* @param aHeight = height of the cylinder ( board internal units )
|
|
|
|
* @param aThickness = tichkness of tube ( board internal units )
|
|
|
|
* @param aZpos = Z position of the bottom side of the cylinder ( board internal units )
|
|
|
|
* @param aBiuTo3DUnits = board internal units to 3D units scaling value
|
|
|
|
*/
|
|
|
|
void Draw3D_ZaxisOblongCylinder( wxPoint aAxis1Pos, wxPoint aAxis2Pos,
|
|
|
|
int aRadius, int aHeight, int aThickness,
|
|
|
|
int aZpos, double aBiuTo3DUnits );
|
|
|
|
|
|
|
|
#endif // _3D_DRAW_BASIC_FUNCTIONS_H_
|