OMPL
Download
Documentation
Primer
Installation
Tutorials
Demos
OMPL.app GUI
OMPL web app
Python Bindings
Available Planners
Planner Termination Conditions
Benchmarking Planners
Available State Spaces
Optimal Planning
Constrained Planning
Multilevel Planning
FAQ
External links
MoveIt
Planner Arena
ICRA 2013 Tutorial
IROS 2011 Tutorial
Gallery
OMPL Integrations
Code
API Overview
Classes
Files
Style Guide
Repositories
ompl on GitHub
omplapp on GitHub
Continuous Integration
ompl on Travis CI (Linux/macOS)
omplapp on Travis CI (Linux/macOS)
ompl on AppVeyor CI (Windows)
omplapp on AppVeyor CI (Windows)
Issues
Community
Get Support
Developers/Contributors
Submit a Contribution
Education
About
License
Citations
Acknowledgments
Blog
omplapp
graphics
detail
assimpGUtil.h
1
/*********************************************************************
2
* Rice University Software Distribution License
3
*
4
* Copyright (c) 2010, Rice University
5
* All Rights Reserved.
6
*
7
* For a full description see the file named LICENSE.
8
*
9
*********************************************************************/
10
11
/* Author: Ioan Sucan */
12
13
#ifndef OMPLAPP_GRAPHICS_DETAIL_ASSIMP_G_UTIL_
14
#define OMPLAPP_GRAPHICS_DETAIL_ASSIMP_G_UTIL_
15
16
#include "omplapp/geometry/detail/assimpUtil.h"
17
18
namespace
ompl
19
{
20
namespace
app
21
{
22
24
25
namespace
scene
26
{
27
28
int
assimpRender(
const
aiScene* scene);
29
int
assimpRender(
const
std::vector<const aiScene*> &scenes);
30
int
assimpRender(
const
aiScene* scene,
const
aiVector3D &robotCenter);
31
int
assimpRender(
const
std::vector<const aiScene*> &scenes,
const
std::vector<aiVector3D> &robotCenter);
32
33
}
35
}
36
}
37
#endif
ompl
Main namespace. Contains everything in this library.
Definition:
AppBase.h:21