mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
renaming classes inside core for 1.0 changes
This commit is contained in:
@@ -39,10 +39,10 @@ public interface PConstants {
|
||||
|
||||
// renderers known to processing.core
|
||||
|
||||
static final String P2D = "processing.core.PGraphics2";
|
||||
static final String P3D = "processing.core.PGraphics3";
|
||||
static final String JAVA2D = "processing.core.PGraphicsJava";
|
||||
static final String OPENGL = "processing.opengl.PGraphicsGL";
|
||||
static final String P2D = "processing.core.PGraphics2D";
|
||||
static final String P3D = "processing.core.PGraphics3D";
|
||||
static final String JAVA2D = "processing.core.PGraphicsJava2D";
|
||||
static final String OPENGL = "processing.opengl.PGraphicsOpenGL";
|
||||
static final String PDF = "processing.pdf.PGraphicsPDF";
|
||||
static final String DXF = "processing.dxf.RawDXF";
|
||||
//static final String SVG = "processing.dxf.PGraphicsSVG";
|
||||
|
||||
@@ -0,0 +1,36 @@
|
||||
/* -*- mode: jde; c-basic-offset: 2; indent-tabs-mode: nil -*- */
|
||||
|
||||
/*
|
||||
Part of the Processing project - http://processing.org
|
||||
|
||||
Copyright (c) 2006 Ben Fry and Casey Reas
|
||||
|
||||
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; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
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, write to the
|
||||
Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
||||
Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
package processing.core;
|
||||
|
||||
//import java.awt.*;
|
||||
//import java.awt.image.*;
|
||||
|
||||
|
||||
/**
|
||||
* Subclass of PGraphics that handles fast 2D rendering,
|
||||
* more commonly referred to as P2D.
|
||||
*/
|
||||
public class PGraphics2D extends PGraphics {
|
||||
// not finished yet
|
||||
}
|
||||
@@ -24,8 +24,9 @@
|
||||
|
||||
package processing.core;
|
||||
|
||||
import java.awt.*;
|
||||
import java.awt.image.*;
|
||||
import java.awt.Toolkit;
|
||||
import java.awt.image.DirectColorModel;
|
||||
import java.awt.image.MemoryImageSource;
|
||||
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user