Skip to content

Commit 882d182

Browse files
author
Jan Bender
committed
- updated README.md
1 parent f4596a9 commit 882d182

File tree

2 files changed

+33
-9
lines changed

2 files changed

+33
-9
lines changed

Doxyfile

+27-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Doxyfile 1.8.10
1+
# Doxyfile 1.8.11
22

33
# This file describes the settings to be used by the documentation system
44
# doxygen (www.doxygen.org) for a project.
@@ -38,7 +38,7 @@ PROJECT_NAME = PositionBasedDynamics
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 1.4.0
41+
PROJECT_NUMBER = 1.5.0
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a
@@ -749,6 +749,12 @@ WARN_IF_DOC_ERROR = YES
749749

750750
WARN_NO_PARAMDOC = NO
751751

752+
# If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when
753+
# a warning is encountered.
754+
# The default value is: NO.
755+
756+
WARN_AS_ERROR = NO
757+
752758
# The WARN_FORMAT tag determines the format of the warning messages that doxygen
753759
# can produce. The string should contain the $file, $line, and $text tags, which
754760
# will be replaced by the file and line number from which the warning originated
@@ -798,8 +804,8 @@ INPUT_ENCODING = UTF-8
798804
# If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp,
799805
# *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h,
800806
# *.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc,
801-
# *.m, *.markdown, *.md, *.mm, *.dox, *.py, *.f90, *.f, *.for, *.tcl, *.vhd,
802-
# *.vhdl, *.ucf, *.qsf, *.as and *.js.
807+
# *.m, *.markdown, *.md, *.mm, *.dox, *.py, *.pyw, *.f90, *.f, *.for, *.tcl,
808+
# *.vhd, *.vhdl, *.ucf, *.qsf, *.as and *.js.
803809

804810
FILE_PATTERNS = *.c \
805811
*.cc \
@@ -926,6 +932,10 @@ IMAGE_PATH = ./doc/images
926932
# Note that the filter must not add or remove lines; it is applied before the
927933
# code is scanned, but not when the output code is generated. If lines are added
928934
# or removed, the anchors will not be placed correctly.
935+
#
936+
# Note that for custom extensions or not directly supported extensions you also
937+
# need to set EXTENSION_MAPPING for the extension otherwise the files are not
938+
# properly processed by doxygen.
929939

930940
INPUT_FILTER =
931941

@@ -935,6 +945,10 @@ INPUT_FILTER =
935945
# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how
936946
# filters are used. If the FILTER_PATTERNS tag is empty or if none of the
937947
# patterns match the file name, INPUT_FILTER is applied.
948+
#
949+
# Note that for custom extensions or not directly supported extensions you also
950+
# need to set EXTENSION_MAPPING for the extension otherwise the files are not
951+
# properly processed by doxygen.
938952

939953
FILTER_PATTERNS =
940954

@@ -1052,7 +1066,7 @@ VERBATIM_HEADERS = YES
10521066
# rich C++ code for which doxygen's built-in parser lacks the necessary type
10531067
# information.
10541068
# Note: The availability of this option depends on whether or not doxygen was
1055-
# compiled with the --with-libclang option.
1069+
# generated with the -Duse-libclang=ON option for CMake.
10561070
# The default value is: NO.
10571071

10581072
CLANG_ASSISTED_PARSING = NO
@@ -1796,6 +1810,14 @@ LATEX_SOURCE_CODE = NO
17961810

17971811
LATEX_BIB_STYLE = plain
17981812

1813+
# If the LATEX_TIMESTAMP tag is set to YES then the footer of each generated
1814+
# page will contain the date and time when the page was generated. Setting this
1815+
# to NO can help when comparing the output of multiple runs.
1816+
# The default value is: NO.
1817+
# This tag requires that the tag GENERATE_LATEX is set to YES.
1818+
1819+
LATEX_TIMESTAMP = NO
1820+
17991821
#---------------------------------------------------------------------------
18001822
# Configuration options related to the RTF output
18011823
#---------------------------------------------------------------------------

README.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@ http://www.interactive-graphics.de/PositionBasedDynamics/doc/html
1616

1717
## Latest Important Changes
1818

19+
* added SceneGenerator.py to generate new scenarios easily by simple Python scripting
20+
* added scene loader based on json
21+
* added collision detection based on distance functions
22+
* added collision handling for rigid and deformable bodies
23+
* high resolution visualization mesh can be attached to a deformable body
1924
* added support for Mac OS X
2025
* added automatic computation of inertia tensor for arbitrary triangle meshes
2126
* added OBJ file loader
@@ -26,11 +31,8 @@ http://www.interactive-graphics.de/PositionBasedDynamics/doc/html
2631
* added target angle motor hinge joint
2732
* parallelized unified solver using graph coloring
2833
* implemented unified solver for rigid bodies and deformable solids
29-
* added generic constraint demo
3034
* added generic constraint
31-
* added coupling demo
32-
* added ball joint which links a rigid body and a particle
33-
* added new joint demo
35+
3436

3537
## Features
3638

0 commit comments

Comments
 (0)