KiCad PCB EDA Suite
Loading...
Searching...
No Matches
dummy_block_3d.cpp
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-2016 Mario Luzeiro <[email protected]>
5 * Copyright (C) 1992-2020 KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, you may find one here:
19 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
20 * or you may search the http://www.gnu.org website for the version 2 license,
21 * or you may write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
23 */
24
30#include "dummy_block_3d.h"
31
32
34{
35 m_centroid = aBBox.GetCenter();
36 m_bbox.Reset();
37 m_bbox.Set( aBBox );
38}
39
40
41bool DUMMY_BLOCK::Intersect( const RAY& aRay, HITINFO& aHitInfo ) const
42{
43 float t;
44
45 if( !m_bbox.Intersect( aRay, &t ) )
46 return false;
47
48 if( t < aHitInfo.m_tHit )
49 {
50 aHitInfo.m_tHit = t;
51 aHitInfo.m_HitPoint = aRay.at( t );
52
53 if( aRay.m_dirIsNeg[2] )
54 aHitInfo.m_HitNormal = SFVEC3F( 0.0f, 0.0f, 1.0f );
55 else
56 aHitInfo.m_HitNormal = SFVEC3F( 0.0f, 0.0f,-1.0f );
57
58 m_material->Generate( aHitInfo.m_HitNormal, aRay, aHitInfo );
59
60 aHitInfo.pHitObject = this;
61
62 return true;
63 }
64
65 return false;
66}
67
68
69bool DUMMY_BLOCK::IntersectP(const RAY& aRay, float aMaxDistance ) const
70{
71 float t;
72
73 if( !m_bbox.Intersect( aRay, &t ) )
74 return false;
75
76 if( t < aMaxDistance )
77 return true;
78
79 return false;
80}
81
82
83bool DUMMY_BLOCK::Intersects( const BBOX_3D& aBBox ) const
84{
85 return m_bbox.Intersects( aBBox );
86}
87
88
89SFVEC3F DUMMY_BLOCK::GetDiffuseColor( const HITINFO& /* aHitInfo */ ) const
90{
91 return m_diffusecolor;
92}
bool IntersectP(const RAY &aRay, float aMaxDistance) const override
SFVEC3F m_diffusecolor
bool Intersect(const RAY &aRay, HITINFO &aHitInfo) const override
bool Intersects(const BBOX_3D &aBBox) const override
SFVEC3F GetDiffuseColor(const HITINFO &aHitInfo) const override
DUMMY_BLOCK(const BBOX_3D &aBBox)
void Generate(SFVEC3F &aNormal, const RAY &aRay, const HITINFO &aHitInfo) const
Definition: material.cpp:89
BBOX_3D m_bbox
Definition: object_3d.h:97
SFVEC3F m_centroid
Definition: object_3d.h:98
const MATERIAL * m_material
Definition: object_3d.h:100
OBJECT_3D_TYPE
Definition: object_3d.h:39
Manage a bounding box defined by two SFVEC3F min max points.
Definition: bbox_3d.h:42
bool Intersect(const RAY &aRay, float *t) const
Definition: bbox_3d_ray.cpp:46
SFVEC3F GetCenter() const
Return the center point of the bounding box.
Definition: bbox_3d.cpp:132
void Set(const SFVEC3F &aPbMin, const SFVEC3F &aPbMax)
Set bounding box with new parameters.
Definition: bbox_3d.cpp:68
void Reset()
Reset the bounding box to zero and de-initialize it.
Definition: bbox_3d.cpp:95
bool Intersects(const BBOX_3D &aBBox) const
Test if a bounding box intersects this box.
Definition: bbox_3d.cpp:218
Stores the hit information of a ray with a point on the surface of a object.
Definition: hitinfo.h:36
float m_tHit
( 4) distance
Definition: hitinfo.h:38
const OBJECT_3D * pHitObject
( 4) Object that was hitted
Definition: hitinfo.h:40
SFVEC3F m_HitNormal
(12) normal at the hit point
Definition: hitinfo.h:37
SFVEC3F m_HitPoint
(12) hit position
Definition: hitinfo.h:44
Definition: ray.h:63
unsigned int m_dirIsNeg[3]
Definition: ray.h:75
SFVEC3F at(float t) const
Definition: ray.h:84
glm::vec3 SFVEC3F
Definition: xv3d_types.h:44