repo
stringlengths
1
152
file
stringlengths
14
221
code
stringlengths
501
25k
file_length
int64
501
25k
avg_line_length
float64
20
99.5
max_line_length
int64
21
134
extension_type
stringclasses
2 values
DicePhys
DicePhys-master/lib/bullet/UnitTests/cppunit/include/cppunit/TextTestProgressListener.h
#ifndef CPPUNIT_TEXTTESTPROGRESSLISTENER_H #define CPPUNIT_TEXTTESTPROGRESSLISTENER_H #include <cppunit/TestListener.h> CPPUNIT_NS_BEGIN /*! * \brief TestListener that show the status of each TestCase test result. * \ingroup TrackingTestExecution */ class CPPUNIT_API TextTestProgressListener : public TestListe...
951
20.155556
73
h
DicePhys
DicePhys-master/lib/bullet/UnitTests/cppunit/include/cppunit/TestSuccessListener.h
#ifndef CPPUNIT_TESTSUCCESSLISTENER_H #define CPPUNIT_TESTSUCCESSLISTENER_H #include <cppunit/SynchronizedObject.h> #include <cppunit/TestListener.h> CPPUNIT_NS_BEGIN /*! \brief TestListener that checks if any test case failed. * \ingroup TrackingTestExecution */ class CPPUNIT_API TestSuccessListener : public Te...
843
20.1
65
h
DicePhys
DicePhys-master/lib/bullet/UnitTests/cppunit/include/cppunit/TestAssert.h
#ifndef CPPUNIT_TESTASSERT_H #define CPPUNIT_TESTASSERT_H #include <cppunit/Portability.h> #include <cppunit/Exception.h> #include <cppunit/Asserter.h> #include <cppunit/portability/Stream.h> #include <stdio.h> #include <float.h> // For struct assertion_traits<double> CPPUNIT_NS_BEGIN /*! \brief Traits used by CPP...
16,603
37.703963
93
h
DicePhys
DicePhys-master/lib/bullet/UnitTests/cppunit/include/cppunit/TextOutputter.h
#ifndef CPPUNIT_TEXTOUTPUTTER_H #define CPPUNIT_TEXTOUTPUTTER_H #include <cppunit/Portability.h> #include <cppunit/Outputter.h> #include <cppunit/portability/Stream.h> CPPUNIT_NS_BEGIN class Exception; class SourceLine; class TestResultCollector; class TestFailure; /*! \brief Prints a TestResultCollector to a tex...
1,431
22.866667
64
h
DicePhys
DicePhys-master/lib/bullet/UnitTests/cppunit/include/cppunit/Exception.h
#ifndef CPPUNIT_EXCEPTION_H #define CPPUNIT_EXCEPTION_H #include <cppunit/Portability.h> #include <cppunit/Message.h> #include <cppunit/SourceLine.h> #include <exception> CPPUNIT_NS_BEGIN /*! \brief Exceptions thrown by failed assertions. * \ingroup BrowsingCollectedTestResult * * Exception is an exception that...
2,161
22.758242
85
h
DicePhys
DicePhys-master/lib/bullet/UnitTests/cppunit/include/cppunit/config-auto.h
#ifndef _INCLUDE_CPPUNIT_CONFIG_AUTO_H #define _INCLUDE_CPPUNIT_CONFIG_AUTO_H 1 /* include/cppunit/config-auto.h. Generated automatically at end of configure. */ /* config/config.h. Generated from config.h.in by configure. */ /* config/config.h.in. Generated from configure.in by autoheader. */ /* define if libra...
4,789
25.611111
81
h
DicePhys
DicePhys-master/lib/bullet/UnitTests/cppunit/include/cppunit/TestResultCollector.h
#ifndef CPPUNIT_TESTRESULTCOLLECTOR_H #define CPPUNIT_TESTRESULTCOLLECTOR_H #include <cppunit/Portability.h> #if CPPUNIT_NEED_DLL_DECL #pragma warning( push ) #pragma warning( disable: 4251 4660 ) // X needs to have dll-interface to be used by clients of class Z #endif #include <cppunit/TestSuccessListener.h> #incl...
2,174
23.715909
104
h
DicePhys
DicePhys-master/lib/bullet/UnitTests/cppunit/include/cppunit/Portability.h
#ifndef CPPUNIT_PORTABILITY_H #define CPPUNIT_PORTABILITY_H #if defined(_WIN32) && !defined(WIN32) # define WIN32 1 #endif /* include platform specific config */ #if defined(__BORLANDC__) # include <cppunit/config/config-bcb5.h> #elif defined (_MSC_VER) # if _MSC_VER == 1200 && defined(_WIN32_WCE) //evc4 # inclu...
6,134
32.342391
89
h
DicePhys
DicePhys-master/lib/bullet/UnitTests/cppunit/include/cppunit/TestRunner.h
#ifndef CPPUNIT_TESTRUNNER_H #define CPPUNIT_TESTRUNNER_H #include <cppunit/TestSuite.h> #include <string> CPPUNIT_NS_BEGIN class Test; class TestResult; /*! \brief Generic test runner. * \ingroup ExecutingTest * * The TestRunner assumes ownership of all added tests: you can not add test * or suite that are l...
3,500
24.742647
89
h
DicePhys
DicePhys-master/lib/bullet/UnitTests/cppunit/include/cppunit/tools/StringTools.h
#ifndef CPPUNIT_TOOLS_STRINGTOOLS_H #define CPPUNIT_TOOLS_STRINGTOOLS_H #include <cppunit/Portability.h> #include <string> #include <cppunit/portability/CppUnitVector.h> CPPUNIT_NS_BEGIN /*! \brief Tool functions to manipulate string. */ struct StringTools { typedef CppUnitVector<std::string> Strings; stati...
751
20.485714
78
h
DicePhys
DicePhys-master/lib/bullet/UnitTests/cppunit/include/cppunit/tools/XmlElement.h
#ifndef CPPUNIT_TOOLS_XMLELEMENT_H #define CPPUNIT_TOOLS_XMLELEMENT_H #include <cppunit/Portability.h> #if CPPUNIT_NEED_DLL_DECL #pragma warning( push ) #pragma warning( disable: 4251 ) // X needs to have dll-interface to be used by clients of class Z #endif #include <cppunit/portability/CppUnitDeque.h> #include <s...
4,394
28.3
99
h
DicePhys
DicePhys-master/lib/bullet/UnitTests/cppunit/include/cppunit/tools/XmlDocument.h
#ifndef CPPUNIT_TOOLS_XMLDOCUMENT_H #define CPPUNIT_TOOLS_XMLDOCUMENT_H #include <cppunit/Portability.h> #if CPPUNIT_NEED_DLL_DECL #pragma warning( push ) #pragma warning( disable: 4251 ) // X needs to have dll-interface to be used by clients of class Z #endif #include <string> CPPUNIT_NS_BEGIN class XmlElement...
2,157
23.804598
99
h
DicePhys
DicePhys-master/lib/bullet/UnitTests/cppunit/include/cppunit/tools/Algorithm.h
#ifndef CPPUNIT_TOOLS_ALGORITHM_H_INCLUDED #define CPPUNIT_TOOLS_ALGORITHM_H_INCLUDED #include <cppunit/Portability.h> CPPUNIT_NS_BEGIN template<class SequenceType, class ValueType> void removeFromSequence( SequenceType &sequence, const ValueType &valueToRemove ) { for ( unsigned int index =0...
533
21.25
66
h
DicePhys
DicePhys-master/lib/bullet/UnitTests/cppunit/include/cppunit/config/SelectDllLoader.h
#ifndef CPPUNIT_CONFIG_SELECTDLLLOADER_H #define CPPUNIT_CONFIG_SELECTDLLLOADER_H /*! \file * Selects DynamicLibraryManager implementation. * * Don't include this file directly. Include Portability.h instead. */ /*! * \def CPPUNIT_NO_TESTPLUGIN * \brief If defined, then plug-in related classes and functions wil...
2,051
25.649351
86
h
DicePhys
DicePhys-master/lib/bullet/UnitTests/cppunit/include/cppunit/config/config-msvc6.h
#ifndef _INCLUDE_CPPUNIT_CONFIG_MSVC6_H #define _INCLUDE_CPPUNIT_CONFIG_MSVC6_H 1 #if _MSC_VER > 1000 // VC++ #pragma warning( disable : 4786 ) // disable warning debug symbol > 255... #endif // _MSC_VER > 1000 #define HAVE_CMATH 1 /* include/cppunit/config-msvc6.h. Manually adapted from include/cppunit/c...
2,354
26.068966
76
h
DicePhys
DicePhys-master/lib/bullet/UnitTests/cppunit/include/cppunit/config/config-bcb5.h
#ifndef _INCLUDE_CPPUNIT_CONFIG_BCB5_H #define _INCLUDE_CPPUNIT_CONFIG_BCB5_H 1 #define HAVE_CMATH 1 /* include/cppunit/config-bcb5.h. Manually adapted from include/cppunit/config-auto.h */ /* define to 1 if the compiler implements namespaces */ #ifndef CPPUNIT_HAVE_NAMESPACES #define CPPUNIT_HAVE_NAMESPACES ...
1,212
24.270833
66
h
DicePhys
DicePhys-master/lib/bullet/UnitTests/cppunit/include/cppunit/config/config-mac.h
#ifndef _INCLUDE_CPPUNIT_CONFIG_MAC_H #define _INCLUDE_CPPUNIT_CONFIG_MAC_H 1 /* MacOS X should be installed using the configure script. This file is for other macs. It is not integrated into <cppunit/Portability.h> because we don't know a suitable preprocessor symbol that will distinguish MacOS X from ot...
1,619
26.457627
69
h
DicePhys
DicePhys-master/lib/bullet/UnitTests/cppunit/include/cppunit/config/config-evc4.h
#ifndef _INCLUDE_CPPUNIT_CONFIG_EVC4_H #define _INCLUDE_CPPUNIT_CONFIG_EVC4_H 1 #if _MSC_VER > 1000 // VC++ #pragma warning( disable : 4786 ) // disable warning debug symbol > 255... #endif // _MSC_VER > 1000 #define HAVE_CMATH 1 /* include/cppunit/config-msvc6.h. Manually adapted from include/cppunit/con...
2,099
25.582278
76
h
DicePhys
DicePhys-master/lib/bullet/UnitTests/cppunit/include/cppunit/ui/text/TextTestRunner.h
#ifndef CPPUNIT_UI_TEXT_TEXTTESTRUNNER_H #define CPPUNIT_UI_TEXT_TEXTTESTRUNNER_H #include <cppunit/Portability.h> #include <string> #include <cppunit/TestRunner.h> CPPUNIT_NS_BEGIN class Outputter; class Test; class TestSuite; class TextOutputter; class TestResult; class TestResultCollector; /*! * \brief A te...
2,554
25.071429
82
h
DicePhys
DicePhys-master/lib/bullet/UnitTests/cppunit/include/cppunit/plugin/PlugInManager.h
#ifndef CPPUNIT_PLUGIN_PLUGINMANAGER_H #define CPPUNIT_PLUGIN_PLUGINMANAGER_H #include <cppunit/Portability.h> #if !defined(CPPUNIT_NO_TESTPLUGIN) #if CPPUNIT_NEED_DLL_DECL #pragma warning( push ) #pragma warning( disable: 4251 ) // X needs to have dll-interface to be used by clients of class Z #endif #include <cp...
3,024
25.535088
99
h
DicePhys
DicePhys-master/lib/bullet/UnitTests/cppunit/include/cppunit/plugin/TestPlugInDefaultImpl.h
#ifndef CPPUNIT_PLUGIN_TESTPLUGINADAPTER #define CPPUNIT_PLUGIN_TESTPLUGINADAPTER #include <cppunit/Portability.h> #if !defined(CPPUNIT_NO_TESTPLUGIN) #include <cppunit/plugin/TestPlugIn.h> #if CPPUNIT_NEED_DLL_DECL #pragma warning( push ) #pragma warning( disable: 4251 4660 ) // X needs to have dll-interface to b...
1,413
21.806452
104
h
DicePhys
DicePhys-master/lib/bullet/UnitTests/cppunit/include/cppunit/plugin/DynamicLibraryManager.h
#ifndef CPPUNIT_PLUGIN_DYNAMICLIBRARYMANAGER_H #define CPPUNIT_PLUGIN_DYNAMICLIBRARYMANAGER_H #include <cppunit/Portability.h> #include <string> #if !defined(CPPUNIT_NO_TESTPLUGIN) CPPUNIT_NS_BEGIN /*! \brief Manages dynamic libraries. * * The Dynamic Library Manager provides a platform independent way to work w...
4,128
32.844262
87
h
DicePhys
DicePhys-master/lib/bullet/UnitTests/cppunit/include/cppunit/plugin/TestPlugIn.h
#ifndef CPPUNIT_PLUGIN_TESTPLUGIN #define CPPUNIT_PLUGIN_TESTPLUGIN #include <cppunit/Portability.h> #if !defined(CPPUNIT_NO_TESTPLUGIN) #include <cppunit/plugin/PlugInParameters.h> CPPUNIT_NS_BEGIN class Test; class TestFactoryRegistry; class TestResult; class XmlOutputter; CPPUNIT_NS_END /*! \file */ /*! \...
7,057
34.114428
97
h
DicePhys
DicePhys-master/lib/bullet/UnitTests/cppunit/include/cppunit/plugin/DynamicLibraryManagerException.h
#ifndef CPPUNIT_PLUGIN_DYNAMICLIBRARYMANAGEREXCEPTION_H #define CPPUNIT_PLUGIN_DYNAMICLIBRARYMANAGEREXCEPTION_H #include <cppunit/Portability.h> #if !defined(CPPUNIT_NO_TESTPLUGIN) #include <stdexcept> #include <string> CPPUNIT_NS_BEGIN /*! \brief Exception thrown by DynamicLibraryManager when a failure occurs. ...
1,177
20.814815
84
h
DicePhys
DicePhys-master/lib/bullet/UnitTests/cppunit/include/cppunit/extensions/Orthodox.h
#ifndef CPPUNIT_EXTENSIONS_ORTHODOX_H #define CPPUNIT_EXTENSIONS_ORTHODOX_H #include <cppunit/TestCase.h> CPPUNIT_NS_BEGIN /* * Orthodox performs a simple set of tests on an arbitary * class to make sure that it supports at least the * following operations: * * default construction - constructor * ...
2,145
21.354167
73
h
DicePhys
DicePhys-master/lib/bullet/UnitTests/cppunit/include/cppunit/extensions/HelperMacros.h
// ////////////////////////////////////////////////////////////////////////// // Header file HelperMacros.h // (c)Copyright 2000, Baptiste Lepilleur. // Created: 2001/04/15 // ////////////////////////////////////////////////////////////////////////// #ifndef CPPUNIT_EXTENSIONS_HELPERMACROS_H #define CPPUNIT_EXTENSIONS_...
20,574
36.961255
86
h
DicePhys
DicePhys-master/lib/bullet/UnitTests/cppunit/include/cppunit/extensions/TestFactoryRegistry.h
#ifndef CPPUNIT_EXTENSIONS_TESTFACTORYREGISTRY_H #define CPPUNIT_EXTENSIONS_TESTFACTORYREGISTRY_H #include <cppunit/Portability.h> #if CPPUNIT_NEED_DLL_DECL #pragma warning( push ) #pragma warning( disable: 4251) // X needs to have dll-interface to be used by clients of class Z #endif #include <cppunit/portability/...
6,208
32.928962
110
h
DicePhys
DicePhys-master/lib/bullet/UnitTests/cppunit/include/cppunit/extensions/TestSuiteBuilderContext.h
#ifndef CPPUNIT_HELPER_TESTSUITEBUILDERCONTEXT_H #define CPPUNIT_HELPER_TESTSUITEBUILDERCONTEXT_H #include <cppunit/Portability.h> #include <cppunit/portability/CppUnitMap.h> #include <string> #if CPPUNIT_NEED_DLL_DECL #pragma warning( push ) #pragma warning( disable: 4251 ) // X needs to have dll-interface to be us...
3,806
27.840909
99
h
DicePhys
DicePhys-master/lib/bullet/UnitTests/cppunit/include/cppunit/extensions/TestNamer.h
#ifndef CPPUNIT_EXTENSIONS_TESTNAMER_H #define CPPUNIT_EXTENSIONS_TESTNAMER_H #include <cppunit/Portability.h> #include <string> #if CPPUNIT_HAVE_RTTI # include <typeinfo> #endif /*! \def CPPUNIT_TESTNAMER_DECL( variableName, FixtureType ) * \brief Declares a TestNamer. * * Declares a TestNamer for the specifi...
2,358
25.211111
83
h
DicePhys
DicePhys-master/lib/bullet/UnitTests/cppunit/include/cppunit/extensions/TestFixtureFactory.h
#ifndef CPPUNIT_EXTENSIONS_TESTFIXTUREFACTORY_H #define CPPUNIT_EXTENSIONS_TESTFIXTUREFACTORY_H #include <cppunit/Portability.h> CPPUNIT_NS_BEGIN class TestFixture; /*! \brief Abstract TestFixture factory (Implementation). * * Implementation detail. Use by HelperMacros to handle TestFixture hierarchy. */ class...
1,169
21.941176
78
h
DicePhys
DicePhys-master/lib/bullet/UnitTests/cppunit/include/cppunit/extensions/ExceptionTestCaseDecorator.h
#ifndef CPPUNIT_EXTENSIONS_EXCEPTIONTESTCASEDECORATOR_H #define CPPUNIT_EXTENSIONS_EXCEPTIONTESTCASEDECORATOR_H #include <cppunit/Portability.h> #include <cppunit/Exception.h> #include <cppunit/extensions/TestCaseDecorator.h> CPPUNIT_NS_BEGIN /*! \brief Expected exception test case decorator. * * A decorator used...
2,846
26.114286
80
h
DicePhys
DicePhys-master/lib/bullet/UnitTests/cppunit/include/cppunit/extensions/AutoRegisterSuite.h
#ifndef CPPUNIT_EXTENSIONS_AUTOREGISTERSUITE_H #define CPPUNIT_EXTENSIONS_AUTOREGISTERSUITE_H #include <cppunit/extensions/TestSuiteFactory.h> #include <cppunit/extensions/TestFactoryRegistry.h> #include <string> CPPUNIT_NS_BEGIN /*! \brief (Implementation) Automatically register the test suite of the specified typ...
2,230
25.559524
88
h
DicePhys
DicePhys-master/lib/bullet/UnitTests/cppunit/include/cppunit/extensions/TypeInfoHelper.h
#ifndef CPPUNIT_TYPEINFOHELPER_H #define CPPUNIT_TYPEINFOHELPER_H #include <cppunit/Portability.h> #if CPPUNIT_HAVE_RTTI #include <typeinfo> #include <string> CPPUNIT_NS_BEGIN /**! \brief Helper to use type_info. */ class CPPUNIT_API TypeInfoHelper { public: /*! \brief Get the class name of the spe...
744
20.911765
66
h
DicePhys
DicePhys-master/lib/bullet/UnitTests/cppunit/include/cppunit/extensions/XmlInputHelper.h
#ifndef CPPUNIT_EXTENSIONS_XMLINPUTHELPER_H #define CPPUNIT_EXTENSIONS_XMLINPUTHELPER_H #include <cppunit/ParameterizedTestCase.h> /*! \brief Adds a parameterized test method to the suite. * \param testMethod Name of the method of the test case to add to the * suite. The signature of the method m...
980
41.652174
89
h
DicePhys
DicePhys-master/lib/bullet/UnitTests/cppunit/include/cppunit/portability/FloatingPoint.h
#ifndef CPPUNIT_PORTABILITY_FLOATINGPOINT_H_INCLUDED #define CPPUNIT_PORTABILITY_FLOATINGPOINT_H_INCLUDED #include <cppunit/Portability.h> #include <math.h> CPPUNIT_NS_BEGIN /// \brief Tests if a floating-point is a NaN. // According to IEEE-754 floating point standard, // (see e.g. page 8 of // http://www.cs.berke...
2,107
37.327273
99
h
DicePhys
DicePhys-master/lib/bullet/Glut/EmptyGL/GL/egl_tokens.h
#ifndef EGL_TOKENS_H #define EGL_TOKENS_H #define EGL_TOKEN_glClearIndex 0x0 #define EGL_TOKEN_glClearColor 0x1 #define EGL_TOKEN_glClear 0x2 #define EGL_TOKEN_glIndexMask 0x3 #define EGL_TOKEN_glColorMask 0x4 #define EGL_TOKEN_glAlphaFunc ...
22,042
46.919565
51
h
DicePhys
DicePhys-master/lib/bullet/Glut/EmptyGL/GL/egl_cpx.h
// todo - implement these as you see fit. inline GLint glRenderMode(GLenum a0) { return GL_RENDER; }; // ymmv. should return previous mode inline GLenum glGetError() { return GL_NO_ERROR; }; inline GLboolean glIsList(GLuint a0) { return GL_TRUE; }; inline GLuint glGenLists(GLsizei a0) { return (GLuint)a0; }; inlin...
908
63.928571
107
h
DicePhys
DicePhys-master/lib/bullet/Glut/EmptyGL/GL/glut.h
#ifndef EMPTY_GLUT_H #define EMPTY_GLUT_H #include <GL/gl.h> #include <GL/glu.h> #define GLUT_KEY_F1 0 #define GLUT_KEY_F2 1 #define GLUT_KEY_END 2 #define GLUT_KEY_LEFT 3 #define GLUT_KEY_RIGHT 4 #define GLUT_KEY_UP 5 #define GLUT_KEY_DOWN 6 #define GLUT_KEY_PAGE_UP 7 #define GLUT_KEY_PAGE_DOWN 8...
1,911
30.344262
78
h
DicePhys
DicePhys-master/lib/bullet/Glut/EmptyGL/GL/gl.h
#ifndef __EGL_H #define __EGL_H // include types and defines #include <GL/egl_defs.h> // include log tokens #include <GL/egl_tokens.h> // include simple void functions we ignore #include <GL/egl_void.h> // include functions that need a bit of work, but we don't log #include <GL/egl_cpx.h> // include functions ...
1,156
23.104167
82
h
DicePhys
DicePhys-master/lib/bullet/Glut/GL/glut.h
#ifndef __glut_h__ #define __glut_h__ /* Copyright (c) Mark J. Kilgard, 1994, 1995, 1996, 1998. */ /* This program is freely distributable without licensing fees and is provided without guarantee or warrantee expressed or implied. This program is -not- in the public domain. */ #if defined(_WIN32) /* GLUT 3....
21,161
33.805921
116
h
DicePhys
DicePhys-master/lib/bullet/Extras/ConvexDecomposition/ConvexBuilder.h
#ifndef CONVEX_BUILDER_H #define CONVEX_BUILDER_H /*---------------------------------------------------------------------- Copyright (c) 2004 Open Dynamics Framework Group www.physicstools.org All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided ...
3,484
29.840708
114
h
DicePhys
DicePhys-master/lib/bullet/Extras/ConvexDecomposition/concavity.h
#ifndef COMPUTE_CONCAVITY_H #define COMPUTE_CONCAVITY_H /*---------------------------------------------------------------------- Copyright (c) 2004 Open Dynamics Framework Group www.physicstools.org All rights reserved. Redistribution and use in source and binary forms, with or without modification, are p...
2,424
38.754098
116
h
DicePhys
DicePhys-master/lib/bullet/Extras/ConvexDecomposition/bestfitobb.h
#ifndef BEST_FIT_OBB_H #define BEST_FIT_OBB_H /*---------------------------------------------------------------------- Copyright (c) 2004 Open Dynamics Framework Group www.physicstools.org All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted p...
1,990
44.25
116
h
DicePhys
DicePhys-master/lib/bullet/Extras/ConvexDecomposition/meshvolume.h
#ifndef MESH_VOLUME_H #define MESH_VOLUME_H /*---------------------------------------------------------------------- Copyright (c) 2004 Open Dynamics Framework Group www.physicstools.org All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted pro...
2,069
44
116
h
DicePhys
DicePhys-master/lib/bullet/Extras/ConvexDecomposition/fitsphere.h
#ifndef FIT_SPHERE_H #define FIT_SPHERE_H /*---------------------------------------------------------------------- Copyright (c) 2004 Open Dynamics Framework Group www.physicstools.org All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provi...
1,957
43.5
116
h
DicePhys
DicePhys-master/lib/bullet/Extras/ConvexDecomposition/planetri.h
#ifndef PLANE_TRI_H #define PLANE_TRI_H /*---------------------------------------------------------------------- Copyright (c) 2004 Open Dynamics Framework Group www.physicstools.org All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provide...
2,736
45.389831
116
h
DicePhys
DicePhys-master/lib/bullet/Extras/ConvexDecomposition/splitplane.h
#ifndef SPLIT_PLANE_H #define SPLIT_PLANE_H //** Computes an 'optimal' split plane for the supplied mesh. //** needs much improvement since it currently just splits along //** the longest side of the AABB. /*---------------------------------------------------------------------- Copyright (c) 2004 Open Dynamics Fram...
2,384
38.75
116
h
DicePhys
DicePhys-master/lib/bullet/Extras/ConvexDecomposition/ConvexDecomposition.h
#ifndef CONVEX_DECOMPOSITION_H #define CONVEX_DECOMPOSITION_H /*---------------------------------------------------------------------- Copyright (c) 2004 Open Dynamics Framework Group www.physicstools.org All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permit...
6,635
29.027149
114
h
DicePhys
DicePhys-master/lib/bullet/Extras/ConvexDecomposition/vlookup.h
#ifndef VLOOKUP_H #define VLOOKUP_H /*---------------------------------------------------------------------- Copyright (c) 2004 Open Dynamics Framework Group www.physicstools.org All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided ...
4,487
36.4
116
h
DicePhys
DicePhys-master/lib/bullet/Extras/ConvexDecomposition/raytri.h
#ifndef RAY_TRI_H #define RAY_TRI_H /*---------------------------------------------------------------------- Copyright (c) 2004 Open Dynamics Framework Group www.physicstools.org All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided ...
2,167
46.130435
131
h
DicePhys
DicePhys-master/lib/bullet/Extras/glui/arcball.h
/********************************************************************** arcball.h GLUI User Interface Toolkit (LGPL) Copyright (c) 1998 Paul Rademacher Feb 1998, Paul Rademacher (rademach@cs.unc.edu) Oct 2003, Nigel Stewart - GLUI Code Cleaning WWW: http://sourceforge.net/projects/glui/ Forum...
3,401
33.714286
75
h
DicePhys
DicePhys-master/lib/bullet/Extras/glui/glui_internal_control.h
/* Header file for use by GLUI controls. Everything you need is right here. */ #ifndef __GLUI_INTERNAL_CONTROL_H #define __GLUI_INTERNAL_CONTROL_H /* This is the main GLUI external header */ #include "GL/glui.h" /* Here's some utility routines */ #include "glui_internal.h" /** A GLUI_Control-drawing sentina...
1,295
27.173913
134
h
DicePhys
DicePhys-master/lib/bullet/Extras/glui/algebra3.h
/* algebra3.cpp, algebra3.h - C++ Vector and Matrix Algebra routines GLUI User Interface Toolkit (LGPL) Copyright (c) 1998 Paul Rademacher WWW: http://sourceforge.net/projects/glui/ Forums: http://sourceforge.net/forum/?group_id=92496 This library is free software; you can redistribute it and/or m...
19,498
39.964286
82
h
DicePhys
DicePhys-master/lib/bullet/Extras/glui/quaternion.h
/**************************************************************************** quaternion.h - A quaternion class GLUI User Interface Toolkit (LGPL) Copyright (c) 1998 Paul Rademacher --------------------------------------------------------------------- WWW: http://sourceforge.net/projects/glui/ Forums...
4,961
42.147826
81
h
DicePhys
DicePhys-master/lib/bullet/Extras/glui/glui_internal.h
#ifndef GLUI_INTERNAL_H #define GLUI_INTERNAL_H #include <cstdio> #include <cmath> #ifndef AND #define AND && #define OR || #define NOT ! #endif #ifndef MAX #define MAX(a,b) ((a)>(b) ? (a) : (b)) #define MIN(a,b) ((a)<(b) ? (a) : (b)) #endif #ifndef ABS #define ABS(a) ((a)>=0 ? (a) : (-(a))) #endif /*********...
2,706
24.064815
85
h
DicePhys
DicePhys-master/lib/bullet/Extras/CUDA/cutil_math.h
/* * Copyright 1993-2007 NVIDIA Corporation. All rights reserved. * * NOTICE TO USER: * * This source code is subject to NVIDIA ownership rights under U.S. and * international Copyright laws. Users and possessors of this source code * are hereby granted a nonexclusive, royalty-free license to use this code...
18,832
23.522135
111
h
DicePhys
DicePhys-master/lib/bullet/Extras/CUDA/cutil_gl_error.h
/* * Copyright 1993-2006 NVIDIA Corporation. All rights reserved. * * NOTICE TO USER: * * This source code is subject to NVIDIA ownership rights under U.S. and * international Copyright laws. * * NVIDIA MAKES NO REPRESENTATION ABOUT THE SUITABILITY OF THIS SOURCE * CODE FOR ANY PURPOSE. IT IS PROVIDED "AS IS" ...
2,913
32.494253
76
h
DicePhys
DicePhys-master/lib/bullet/Extras/CDTestFramework/AntTweakBar/src/TwEventGLUT.c
// --------------------------------------------------------------------------- // // @file TwEventGLUT.c // @brief Helper: // translate and re-send mouse and keyboard events // from GLUT event callbacks to AntTweakBar // // @author Philippe Decaudin - http://www.antisphe...
4,275
27.317881
94
c
DicePhys
DicePhys-master/lib/bullet/Extras/CDTestFramework/AntTweakBar/src/TwEventGLFW.c
// --------------------------------------------------------------------------- // // @file TwEventGLFW.c // @brief Helper: // translate and re-send mouse and keyboard events // from GLFW event callbacks to AntTweakBar // // @author Philippe Decaudin - http://www.antisphe...
6,351
28.821596
91
c
DicePhys
DicePhys-master/lib/bullet/Extras/CDTestFramework/AntTweakBar/src/TwPrecomp.h
// --------------------------------------------------------------------------- // // @file TwPrecomp.h // @brief Precompiled header // @author Philippe Decaudin - http://www.antisphere.com // @license This file is part of the AntTweakBar library. // For conditions of distribution and...
2,449
25.06383
97
h
DicePhys
DicePhys-master/lib/bullet/Extras/CDTestFramework/AntTweakBar/src/TwEventWin32.c
// --------------------------------------------------------------------------- // // @file TwEventWin32.c // @brief Helper: // translate and re-send mouse and keyboard events // from Win32 message proc to AntTweakBar // // @author Philippe Decaudin - http://www.antisphere.com // @date 2006/05/10 // @licen...
4,406
22.31746
96
c
DicePhys
DicePhys-master/lib/bullet/Extras/CDTestFramework/AntTweakBar/src/TwEventWin.c
// --------------------------------------------------------------------------- // // @file TwEventWin.c // @brief Helper: // translate and re-send mouse and keyboard events // from Windows message proc to AntTweakBar // // @author Philippe Decaudin - http://www.antispher...
8,261
31.14786
110
c
DicePhys
DicePhys-master/lib/bullet/Extras/CDTestFramework/AntTweakBar/src/TwFonts.h
// --------------------------------------------------------------------------- // // @file TwFonts.h // @brief Bitmaps fonts // @author Philippe Decaudin - http://www.antisphere.com // @license This file is part of the AntTweakBar library. // For conditions of distribution and use, s...
1,744
25.044776
101
h
DicePhys
DicePhys-master/lib/bullet/Extras/CDTestFramework/AntTweakBar/src/TwEventX11.c
// --------------------------------------------------------------------------- // // @file TwEventX11.c // @brief Helper: // translate and forward mouse and keyboard events // from X11 to AntTweakBar // // @contrib Greg Popovitch // @license This file is part of the A...
6,406
30.101942
95
c
DicePhys
DicePhys-master/lib/bullet/Extras/CDTestFramework/AntTweakBar/src/resource.h
//{{NO_DEPENDENCIES}} // Microsoft Visual C++ generated include file. // Used by AntTweakBar.rc // #define IDC_CURSOR1 101 #define IDC_CURSOR2 102 #define IDC_CURSOR3 103 #define IDC_CURSOR4 104 #define IDC_CURSOR5 105 #...
1,010
32.7
47
h
DicePhys
DicePhys-master/lib/bullet/Extras/CDTestFramework/AntTweakBar/src/MiniGLUT.h
// --------------------------------------------------------------------------- // // @file MiniGLUT.h // @brief A subset of GLUT definitions needed to compile helper functions // implemented in TwEventGLUT.c // // notes: - Private header // - AntTweakBar.dll does not need to li...
5,107
34.72028
114
h
DicePhys
DicePhys-master/lib/bullet/Extras/CDTestFramework/AntTweakBar/src/TwEventSDL.c
// --------------------------------------------------------------------------- // // @file TwEventSDL.c // @brief Helper: // translate and re-send mouse and keyboard events // from SDL event loop to AntTweakBar // // @author Philippe Decaudin - http://www.antisphere.com ...
1,810
40.159091
104
c
DicePhys
DicePhys-master/lib/bullet/Extras/Serialize/BulletFileLoader/bDefines.h
/* Copyright (C) 2006-2009 Charlie C & Erwin Coumans http://gamekit.googlecode.com * * This software is provided 'as-is', without any express or implied * warranty. In no event will the authors be held liable for any damages * arising from the use of this software. * * Permission is granted to anyone to use this softw...
4,917
33.879433
132
h
DicePhys
DicePhys-master/lib/bullet/Extras/Serialize/BulletXmlWorldImporter/tinystr.h
/* www.sourceforge.net/projects/tinyxml This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications...
8,198
25.794118
100
h
DicePhys
DicePhys-master/lib/bullet/Extras/sph/fluids/fluid.h
/* FLUIDS v.1 - SPH Fluid Simulator for CPU and GPU Copyright (C) 2008. Rama Hoetzlein, http://www.rchoetzlein.com ZLib license This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. ...
1,390
29.911111
76
h
DicePhys
DicePhys-master/lib/bullet/Extras/sph/fluids/fluid_system.h
/* FLUIDS v.1 - SPH Fluid Simulator for CPU and GPU Copyright (C) 2008. Rama Hoetzlein, http://www.rchoetzlein.com ZLib license This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. ...
2,982
26.878505
77
h
DicePhys
DicePhys-master/lib/bullet/Extras/sph/common/mesh.h
/* FLUIDS v.1 - SPH Fluid Simulator for CPU and GPU Copyright (C) 2009. Rama Hoetzlein, http://www.rchoetzlein.com ZLib license This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. ...
5,196
31.279503
113
h
DicePhys
DicePhys-master/lib/bullet/Extras/sph/common/common_defs.h
/* FLUIDS v.1 - SPH Fluid Simulator for CPU and GPU Copyright (C) 2009. Rama Hoetzlein, http://www.rchoetzlein.com ZLib license This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. ...
1,864
34.865385
115
h
DicePhys
DicePhys-master/lib/bullet/Extras/sph/common/geomx.h
/* FLUIDS v.1 - SPH Fluid Simulator for CPU and GPU Copyright (C) 2008. Rama Hoetzlein, http://www.rchoetzlein.com ZLib license This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. ...
4,181
32.190476
89
h
DicePhys
DicePhys-master/lib/bullet/Extras/sph/common/image.h
/* FLUIDS v.1 - SPH Fluid Simulator for CPU and GPU Copyright (C) 2009. Rama Hoetzlein, http://www.rchoetzlein.com ZLib license This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. ...
5,434
27.756614
89
h
DicePhys
DicePhys-master/lib/bullet/Extras/sph/common/mdebug.h
/* FLUIDS v.1 - SPH Fluid Simulator for CPU and GPU Copyright (C) 2009. Rama Hoetzlein, http://www.rchoetzlein.com ZLib license This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. ...
4,114
28.604317
118
h
DicePhys
DicePhys-master/lib/bullet/Extras/sph/common/mtime.h
/* FLUIDS v.1 - SPH Fluid Simulator for CPU and GPU Copyright (C) 2009. Rama Hoetzlein, http://www.rchoetzlein.com ZLib license This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. ...
8,958
37.123404
123
h
DicePhys
DicePhys-master/lib/bullet/Extras/sph/common/mesh_info.h
/* FLUIDS v.1 - SPH Fluid Simulator for CPU and GPU Copyright (C) 2009. Rama Hoetzlein, http://www.rchoetzlein.com ZLib license This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. ...
2,254
22.010204
87
h
DicePhys
DicePhys-master/lib/bullet/Extras/sph/common/matrix.h
/* FLUIDS v.1 - SPH Fluid Simulator for CPU and GPU Copyright (C) 2009. Rama Hoetzlein, http://www.rchoetzlein.com ZLib license This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. ...
15,018
33.927907
130
h
DicePhys
DicePhys-master/lib/bullet/Extras/sph/common/point_set.h
/* FLUIDS v.1 - SPH Fluid Simulator for CPU and GPU Copyright (C) 2008. Rama Hoetzlein, http://www.rchoetzlein.com ZLib license This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. ...
4,820
28.042169
101
h
DicePhys
DicePhys-master/lib/bullet/Extras/sph/common/gl_helper.h
/* FLUIDS v.1 - SPH Fluid Simulator for CPU and GPU Copyright (C) 2009. Rama Hoetzlein, http://www.rchoetzlein.com ZLib license This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. ...
2,702
29.370787
103
h
DicePhys
DicePhys-master/lib/bullet/Extras/sph/common/particle.h
/* FLUIDS v.1 - SPH Fluid Simulator for CPU and GPU Copyright (C) 2009. Rama Hoetzlein, http://www.rchoetzlein.com ZLib license This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. ...
1,059
34.333333
76
h
self
self-master/src/SelfLib.h
/** * Copyright 2017 IBM Corp. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law o...
1,055
27.540541
115
h
self
self-master/src/SelfInstance.h
/** * Copyright 2017 IBM Corp. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law o...
12,345
26.496659
134
h
self
self-master/src/gestures/MoveGesture.h
/** * Copyright 2017 IBM Corp. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law o...
1,261
23.269231
80
h
self
self-master/src/gestures/GestureManager.h
/** * Copyright 2017 IBM Corp. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law o...
2,455
26.909091
99
h
self
self-master/src/gestures/ProxyGesture.h
/** * Copyright 2017 IBM Corp. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law o...
2,039
24.5
89
h
self
self-master/src/gestures/SystemGesture.h
/** * Copyright 2017 IBM Corp. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law o...
1,186
23.729167
77
h
self
self-master/src/gestures/GraspGesture.h
/** * Copyright 2017 IBM Corp. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law o...
1,205
22.647059
80
h
self
self-master/src/gestures/SMSGesture.h
/** * Copyright 2017 IBM Corp. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law o...
1,314
22.909091
80
h
self
self-master/src/gestures/PostureGesture.h
/** * Copyright 2017 IBM Corp. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law o...
1,299
24
80
h
self
self-master/src/gestures/TelephonySpeechGesture.h
/** * Copyright 2017 IBM Corp. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law o...
1,920
24.959459
100
h
self
self-master/src/gestures/RestGesture.h
/** * Copyright 2017 IBM Corp. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law o...
2,371
21.590476
80
h
self
self-master/src/gestures/SoundGesture.h
/** * Copyright 2017 IBM Corp. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law o...
1,448
22.370968
80
h
self
self-master/src/gestures/SelfUpdateGesture.h
/** * Copyright 2017 IBM Corp. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law o...
1,175
24.565217
78
h
self
self-master/src/gestures/EmailGesture.h
/** * Copyright 2017 IBM Corp. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law o...
1,409
24.636364
83
h
self
self-master/src/gestures/SocketGesture.h
/** * Copyright 2017 IBM Corp. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law o...
1,669
22.521127
81
h
self
self-master/src/gestures/StatusGesture.h
/** * Copyright 2017 IBM Corp. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law o...
1,337
23.777778
78
h
self
self-master/src/gestures/WebSocketGesture.h
/** * Copyright 2017 IBM Corp. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law o...
2,697
22.258621
78
h
self
self-master/src/gestures/QARestGesture.h
/** * Copyright 2017 IBM Corp. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law o...
2,410
21.745283
80
h