KiCad PCB EDA Suite
Loading...
Searching...
No Matches
ifsg_index.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 Cirilo Bernardo <[email protected]>
5 * Copyright (C) 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
25
26#include <iostream>
27#include <sstream>
28#include <wx/log.h>
29
32
33
35{
36}
37
38
39bool IFSG_INDEX::GetIndices( size_t& nIndices, int*& aIndexList )
40{
41 wxCHECK( m_node, false );
42
43 return ( (SGINDEX*) m_node )->GetIndices( nIndices, aIndexList );
44}
45
46
47bool IFSG_INDEX::SetIndices( size_t nIndices, int* aIndexList )
48{
49 wxCHECK( m_node, false );
50
51 ( (SGINDEX*) m_node )->SetIndices( nIndices, aIndexList );
52
53 return true;
54}
55
56
57bool IFSG_INDEX::AddIndex( int aIndex )
58{
59 wxCHECK( m_node, false );
60
61 ( (SGINDEX*) m_node )->AddIndex( aIndex );
62
63 return true;
64}
bool GetIndices(size_t &nIndices, int *&aIndexList)
Definition: ifsg_index.cpp:39
bool AddIndex(int aIndex)
Function AddIndex adds a single index to the list.
Definition: ifsg_index.cpp:57
bool SetIndices(size_t nIndices, int *aIndexList)
Function SetIndices sets the number of indices and creates a copy of the given index data.
Definition: ifsg_index.cpp:47
IFSG_NODE represents the base class of all DLL-safe Scene Graph nodes.
Definition: ifsg_node.h:55
SGNODE * m_node
Definition: ifsg_node.h:57
Define a generic index interface for a scenegraph object.
Definition: sg_index.h:39
defines the index nodes wrapper