Minor comment edits.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@341 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Walter Korman
2001-09-17 23:55:45 +00:00
parent b9ac6f9e24
commit ae5c9ba187
2 changed files with 8 additions and 6 deletions
@@ -1,5 +1,5 @@
//
// $Id: Sprite.java,v 1.22 2001/09/17 23:25:26 shaper Exp $
// $Id: Sprite.java,v 1.23 2001/09/17 23:55:45 shaper Exp $
package com.threerings.media.sprite;
@@ -477,7 +477,7 @@ public class Sprite
/**
* This should be overridden by derived classes (which should be sure
* to call <code>super.toString()</code>) to append the derived class
* specific event information to the string buffer.
* specific sprite information to the string buffer.
*/
protected void toString (StringBuffer buf)
{
@@ -1,5 +1,5 @@
//
// $Id: LineSegmentPath.java,v 1.9 2001/09/13 19:10:26 mdb Exp $
// $Id: LineSegmentPath.java,v 1.10 2001/09/17 23:55:45 shaper Exp $
package com.threerings.media.sprite;
@@ -95,9 +95,11 @@ public class LineSegmentPath implements Path
/**
* Sets the velocity of this sprite in pixels per millisecond. The
* velocity is measured as pixels traversed along the path that the
* sprite is traveling rather than in the x or y directions
* individually.
* velocity is measured as pixels traversed along the path that
* the sprite is traveling rather than in the x or y directions
* individually. Note that the sprite velocity should not be
* changed while a path is being traversed; doing so may result in
* the sprite position changing unexpectedly.
*
* @param velocity the sprite velocity in pixels per millisecond.
*/