Skip to content

Commit e7d59a9

Browse files
committed
Initial commit
0 parents  commit e7d59a9

File tree

15 files changed

+2556
-0
lines changed

15 files changed

+2556
-0
lines changed

.editorconfig

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
root = true
2+
3+
[*]
4+
end_of_line = lf
5+
indent_size = 4
6+
indent_style = space
7+
insert_final_newline = true
8+
trim_trailing_whitespace = true
9+
10+
[*.md]
11+
trim_trailing_whitespace = false
12+
13+
[*.yml]
14+
indent_size = 2

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*.class
2+
*.jar

.travis.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
sudo: false
3+
language: java
4+
jdk:
5+
- oraclejdk7
6+
- oraclejdk8
7+
before_cache:
8+
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
9+
cache:
10+
directories:
11+
- $HOME/.gradle/caches/
12+
- $HOME/.gradle/wrapper/

COPYING

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
Copyright (c) 2008-2016 University of North Carolina at Chapel Hill.
2+
All rights reserved.
3+
4+
Permission to use, copy, modify, and distribute this software and its
5+
documentation for educational, research, and non-profit purposes, without fee,
6+
and without a written agreement is hereby granted, provided that the above
7+
copyright notice, this paragraph, and the following four paragraphs appear in
8+
all copies.
9+
10+
Permission to incorporate this software into commercial products may be obtained
11+
by contacting the authors <geom@cs.unc.edu> or the Office of Technology
12+
Development at the University of North Carolina at Chapel Hill <otd@unc.edu>.
13+
14+
This software program and documentation are copyrighted by the University of
15+
North Carolina at Chapel Hill. The software program and documentation are
16+
supplied "as is," without any accompanying services from the University of North
17+
Carolina at Chapel Hill or the authors. The University of North Carolina at
18+
Chapel Hill and the authors do not warrant that the operation of the program
19+
will be uninterrupted or error-free. The end-user understands that the program
20+
was developed for research purposes and is advised not to rely exclusively on
21+
the program for any reason.
22+
23+
IN NO EVENT SHALL THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL OR THE AUTHORS
24+
BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
25+
CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE USE OF THIS
26+
SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF NORTH CAROLINA AT
27+
CHAPEL HILL OR THE AUTHORS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28+
29+
THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL AND THE AUTHORS SPECIFICALLY
30+
DISCLAIM ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
31+
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE AND ANY STATUTORY
32+
WARRANTY OF NON-INFRINGEMENT. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS"
33+
BASIS, AND THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL AND THE AUTHORS HAVE
34+
NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR
35+
MODIFICATIONS.

README.md

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
Optimal Reciprocal Collision Avoidance
2+
======================================
3+
4+
<http://gamma.cs.unc.edu/RVO2/>
5+
6+
Copyright &copy; 2008-2016 University of North Carolina at Chapel Hill. All
7+
rights reserved.
8+
9+
[![Build Status](https://travis-ci.org/snape/RVO2-Java.svg?branch=master)](https://travis-ci.org/snape/RVO2-Java)
10+
[![Build status](https://ci.appveyor.com/api/projects/status/j1sn29bhg5iixysq/branch/master?svg=true)](https://ci.appveyor.com/project/snape/RVO2-Java)
11+
12+
Permission to use, copy, modify, and distribute this software and its
13+
documentation for educational, research, and non-profit purposes, without fee,
14+
and without a written agreement is hereby granted, provided that the above
15+
copyright notice, this paragraph, and the following four paragraphs appear in
16+
all copies.
17+
18+
Permission to incorporate this software into commercial products may be obtained
19+
by contacting the authors ([geom@cs.unc.edu](mailto:geom@cs.unc.edu)) or the
20+
Office of Technology Development at the University of North Carolina at Chapel
21+
Hill ([otd@unc.edu](mailto:otd@unc.edu)).
22+
23+
This software program and documentation are copyrighted by the University of
24+
North Carolina at Chapel Hill. The software program and documentation are
25+
supplied "as is," without any accompanying services from the University of North
26+
Carolina at Chapel Hill or the authors. The University of North Carolina at
27+
Chapel Hill and the authors do not warrant that the operation of the program
28+
will be uninterrupted or error-free. The end-user understands that the program
29+
was developed for research purposes and is advised not to rely exclusively on
30+
the program for any reason.
31+
32+
IN NO EVENT SHALL THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL OR THE AUTHORS
33+
BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
34+
CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE USE OF THIS
35+
SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF NORTH CAROLINA AT
36+
CHAPEL HILL OR THE AUTHORS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37+
38+
THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL AND THE AUTHORS SPECIFICALLY
39+
DISCLAIM ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
40+
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE AND ANY STATUTORY
41+
WARRANTY OF NON-INFRINGEMENT. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS"
42+
BASIS, AND THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL AND THE AUTHORS HAVE
43+
NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR
44+
MODIFICATIONS.
45+
46+
Please send all bug reports to [geom@cs.unc.edu](mailto:geom@cs.unc.edu).
47+
48+
The authors may be contacted via:
49+
50+
Jur van den Berg, Stephen J. Guy, Jamie Snape, Ming C. Lin, and Dinesh Manocha
51+
Dept. of Computer Science
52+
201 S. Columbia St.
53+
Frederick P. Brooks, Jr. Computer Science Bldg.
54+
Chapel Hill, N.C. 27599-3175
55+
United States of America

appveyor.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
version: 1.0.{build}
3+
branches:
4+
except:
5+
- gh-pages

0 commit comments

Comments
 (0)