changeset 53:3dc1f15e1e13

going to write main documentation
author Robert McIntyre <rlm@mit.edu>
date Sat, 03 Dec 2011 13:54:47 -0600
parents d799a0278cc9
children 6484a820e27d
files src/com/aurellem/capture/Capture.java src/com/aurellem/capture/examples/Basic.java src/com/aurellem/capture/video/AbstractVideoRecorder.java src/com/aurellem/capture/video/VideoRecorder.java
diffstat 4 files changed, 9 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
     1.1 --- a/src/com/aurellem/capture/Capture.java	Sat Dec 03 13:51:28 2011 -0600
     1.2 +++ b/src/com/aurellem/capture/Capture.java	Sat Dec 03 13:54:47 2011 -0600
     1.3 @@ -17,6 +17,12 @@
     1.4  import com.jme3.system.AppSettings;
     1.5  import com.jme3.system.JmeSystem;
     1.6  
     1.7 +/**
     1.8 + * 
     1.9 + * @author Robert McIntyre
    1.10 + *
    1.11 + */
    1.12 +
    1.13  public class Capture {
    1.14  
    1.15  	public static void captureVideo(final Application app, final File file) throws IOException{
     2.1 --- a/src/com/aurellem/capture/examples/Basic.java	Sat Dec 03 13:51:28 2011 -0600
     2.2 +++ b/src/com/aurellem/capture/examples/Basic.java	Sat Dec 03 13:54:47 2011 -0600
     2.3 @@ -17,7 +17,6 @@
     2.4   * or demo videos, even on very slow laptops.
     2.5   * 
     2.6   * @author Robert McIntyre
     2.7 - *
     2.8   */
     2.9  
    2.10  public class Basic {
     3.1 --- a/src/com/aurellem/capture/video/AbstractVideoRecorder.java	Sat Dec 03 13:51:28 2011 -0600
     3.2 +++ b/src/com/aurellem/capture/video/AbstractVideoRecorder.java	Sat Dec 03 13:54:47 2011 -0600
     3.3 @@ -39,7 +39,6 @@
     3.4   * with shadows to <code>file2</code>
     3.5   * 
     3.6   * @author Robert McIntyre
     3.7 - *
     3.8   */
     3.9  
    3.10  public abstract class AbstractVideoRecorder 
     4.1 --- a/src/com/aurellem/capture/video/VideoRecorder.java	Sat Dec 03 13:51:28 2011 -0600
     4.2 +++ b/src/com/aurellem/capture/video/VideoRecorder.java	Sat Dec 03 13:54:47 2011 -0600
     4.3 @@ -11,18 +11,18 @@
     4.4  	void record(BufferedImage image);
     4.5  	
     4.6  	/**
     4.7 -	 * stop recording temporarally.  The recording can be started again
     4.8 +	 * Stop recording temporarily.  The recording can be started again
     4.9  	 * with start()
    4.10  	 */
    4.11  	void pause();
    4.12  	
    4.13  	/**
    4.14 -	 * start the recording.
    4.15 +	 * Start the recording.
    4.16  	 */
    4.17  	void start();
    4.18  	
    4.19  	/**
    4.20 -	 * closes the video file, writing appropriate headers, trailers, etc.
    4.21 +	 * Closes the video file, writing appropriate headers, trailers, etc.
    4.22  	 * After this is called, no more recording can be done.
    4.23  	 */
    4.24  	void finish();