| 1 | Ardor3D is licensed as follows: |
|---|
| 2 | |
|---|
| 3 | /** |
|---|
| 4 | * Copyright (c) 2008-2010 Ardor Labs, Inc. |
|---|
| 5 | * |
|---|
| 6 | * This software is provided 'as-is', without any express or implied |
|---|
| 7 | * warranty. In no event will the authors be held liable for any damages |
|---|
| 8 | * arising from the use of this software. |
|---|
| 9 | * |
|---|
| 10 | * Permission is granted to anyone to use this software for any purpose, |
|---|
| 11 | * including commercial applications, and to alter it and redistribute it |
|---|
| 12 | * freely, subject to the following restrictions: |
|---|
| 13 | * |
|---|
| 14 | * 1. The origin of this software must not be misrepresented; you must not |
|---|
| 15 | * claim that you wrote the original software. If you use this software |
|---|
| 16 | * in a product, an acknowledgment in the product documentation would be |
|---|
| 17 | * appreciated but is not required. |
|---|
| 18 | * |
|---|
| 19 | * 2. Altered source versions must be plainly marked as such, and must not be |
|---|
| 20 | * misrepresented as being the original software. |
|---|
| 21 | * |
|---|
| 22 | * 3. This notice may not be removed or altered from any source |
|---|
| 23 | * distribution. |
|---|
| 24 | */ |
|---|
| 25 | |
|---|
| 26 | |
|---|
| 27 | Some code was reused from work that we and others did on the jMonkeyEngine project. |
|---|
| 28 | Where that work was not done by us, those sections use the BSD-3 clause license: |
|---|
| 29 | |
|---|
| 30 | /* |
|---|
| 31 | * Copyright (c) 2003-2008 jMonkeyEngine |
|---|
| 32 | * All rights reserved. |
|---|
| 33 | * |
|---|
| 34 | * Redistribution and use in source and binary forms, with or without |
|---|
| 35 | * modification, are permitted provided that the following conditions are |
|---|
| 36 | * met: |
|---|
| 37 | * |
|---|
| 38 | * * Redistributions of source code must retain the above copyright |
|---|
| 39 | * notice, this list of conditions and the following disclaimer. |
|---|
| 40 | * |
|---|
| 41 | * * Redistributions in binary form must reproduce the above copyright |
|---|
| 42 | * notice, this list of conditions and the following disclaimer in the |
|---|
| 43 | * documentation and/or other materials provided with the distribution. |
|---|
| 44 | * |
|---|
| 45 | * * Neither the name of 'jMonkeyEngine' nor the names of its contributors |
|---|
| 46 | * may be used to endorse or promote products derived from this software |
|---|
| 47 | * without specific prior written permission. |
|---|
| 48 | * |
|---|
| 49 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
|---|
| 50 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
|---|
| 51 | * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
|---|
| 52 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR |
|---|
| 53 | * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
|---|
| 54 | * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
|---|
| 55 | * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
|---|
| 56 | * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
|---|
| 57 | * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
|---|
| 58 | * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
|---|
| 59 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|---|
| 60 | */ |
|---|