ZenScript main repository
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

DPathTracer.java 553B

12345678910111213141516171819202122
  1. /*
  2. * To change this license header, choose License Headers in Project Properties.
  3. * To change this template file, choose Tools | Templates
  4. * and open the template in the editor.
  5. */
  6. package org.openzen.drawablegui;
  7. /**
  8. *
  9. * @author Hoofdgebruiker
  10. */
  11. public interface DPathTracer {
  12. public void moveTo(float x, float y);
  13. public void lineTo(float x, float y);
  14. public void bezierCubic(float x1, float y1, float x2, float y2, float x3, float y3);
  15. public void bezierQuadratic(float x1, float y1, float x2, float y2);
  16. public void close();
  17. }