Skip to content

Commit

Permalink
added license
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristophPacher committed Nov 4, 2010
1 parent cd2cf8c commit ba75155
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 7 deletions.
Binary file modified Documentation.docx
Binary file not shown.
4 changes: 3 additions & 1 deletion physics/EffectsParticle.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
// EffectsParticle.js
// Copyright (c) Christoph Pacher (http://www.christophpacher.com)
// Copyright (c) 2008-2010 Christoph Pacher (http://www.christophpacher.com)
//
// This physics library is freely distributable under the terms of an MIT-style license.

Effect.ScaleP = Class.create(Effect.Scale, {
initialize: function(element, percent) {
Expand Down
4 changes: 3 additions & 1 deletion physics/PhysicsCollision.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
// PhysicsCollisions.js
// Copyright (c) Christoph Pacher (http://www.christophpacher.com)
// Copyright (c) 2008-2010 Christoph Pacher (http://www.christophpacher.com)
//
// This physics library is freely distributable under the terms of an MIT-style license.
// Collisions impulses base on the theroy of Erin Catto's sequential impulses
Physics.Collision = Class.create(
{
Expand Down
4 changes: 3 additions & 1 deletion physics/PhysicsForce.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
// PhysicsForce.js
// Copyright (c) Christoph Pacher (http://www.christophpacher.com)
// Copyright (c) 2008-2010 Christoph Pacher (http://www.christophpacher.com)
//
// This physics library is freely distributable under the terms of an MIT-style license.

Physics.Omni = Class.create(
{
Expand Down
4 changes: 3 additions & 1 deletion physics/PhysicsParticle.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
// PhysicsParticle.js
// Copyright (c) Christoph Pacher (http://www.christophpacher.com)
// Copyright (c) 2008-2010 Christoph Pacher (http://www.christophpacher.com)
//
// This physics library is freely distributable under the terms of an MIT-style license.
Physics.Particle = Class.create(
{
initialize: function(pWorldW3D, pPosV3D, pExtV3D, pMassN, pVelocityV3D, pSpriteO, pNumN){
Expand Down
4 changes: 3 additions & 1 deletion physics/PhysicsWorld.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
// PhysicsWorld.js
// Copyright (c) Christoph Pacher (http://www.christophpacher.com)
// Copyright (c) 2008-2010 Christoph Pacher (http://www.christophpacher.com)
//
// This physics library is freely distributable under the terms of an MIT-style license.

var Physics =
{
Expand Down
4 changes: 3 additions & 1 deletion physics/Renderer.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
// Renderer.js
// Copyright (c) Christoph Pacher (http://www.christophpacher.com)
// Copyright (c) 2008-2010 Christoph Pacher (http://www.christophpacher.com)
//
// This physics library is freely distributable under the terms of an MIT-style license.

/*
var PeriodicalExecuterUserData = Class.create(PeriodicalExecuter,
Expand Down
4 changes: 3 additions & 1 deletion physics/Vector.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
// Vector.js
// Copyright (c) Christoph Pacher (http://www.christophpacher.com)
// Copyright (c) 2008-2010 Christoph Pacher (http://www.christophpacher.com)
//
// This physics library is freely distributable under the terms of an MIT-style license.


var V3DP =
Expand Down

0 comments on commit ba75155

Please sign in to comment.