/*
 * Part of the PapARt project - https://project.inria.fr/papart/
 *
 * Copyright (C) 2014-2016 Inria
 * Copyright (C) 2011-2013 Bordeaux University
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation, version 2.1.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General
 * Public License along with this library; If not, see
 * <http://www.gnu.org/licenses/>.
 */
package fr.inria.papart;

import fr.inria.papart.utils.ARToolkitPlusUtils;
import org.bytedeco.javacpp.opencv_core.IplImage;
import processing.core.PApplet;

/**
 *
 * @author Jeremy Laviole [email protected]
 */
public class UtilsTest extends PApplet {

    @Override
    public void settings() {
        size(200, 200);
    }

    @Override
    public void setup() {
        stroke(155, 0, 0);
    }

    @Override
    public void draw() {
        line(mouseX, mouseY, width / 2, height / 2);

    }

    public static void main(String args[]) {
        PApplet.main(new String[]{"--present", "fr.inria.papart.UtilsTest"});
    }

}