Package toxi.util

Examples of toxi.util.FileSequenceDescriptor


import toxi.util.FileUtils;

public class FileUtilsTest extends TestCase {

    public void testSequence() {
        FileSequenceDescriptor d = FileUtils
                .getFileSequenceDescriptorFor("test/img010.tga");
        assertEquals(3, d.getDuration());
        for (Iterator<String> i = d.iterator(); i.hasNext();) {
            System.out.println(i.next());
        }
    }
View Full Code Here

TOP

Related Classes of toxi.util.FileSequenceDescriptor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.