代码搜索:Draw
找到约 10,000 项符合「Draw」的源代码
代码结果 10,000
www.eeworm.com/read/480485/1317602
java graphic.java
/**
* A graphic interface that proxy and real object should implement
* so a proxy can proxy several real object
*/
public interface Graphic {
public abstract void Draw();
}
www.eeworm.com/read/480485/1317605
java notesymbol.java
/*
* A concrete prototype to draw a note
*/
public class NoteSymbol extends Graphic {
public NoteSymbol() {
}
public void DoSomething() {
System.out.println("I am used
www.eeworm.com/read/480485/1317606
java linesymbol.java
/*
* A concrete prototype to draw a line
*/
public class LineSymbol extends Graphic {
public LineSymbol() {
}
public void DoSomething() {
System.out.println("I am used
www.eeworm.com/read/480485/1317705
java strategya.java
/**
* A concrete strategy to draw a text by the width of line
*/
import java.io.*;
public class StrategyA implements Strategy {
public StrategyA() {
}
public void drawText(Stri
www.eeworm.com/read/250753/4427000
java myrectangle.java
// MyRectangle.java
// MyRectangle is a MyShape subclass that represents a
// rectangle, including an implementation of the draw method
// for drawing the rectangle on a Graphics2D context.
packa
www.eeworm.com/read/240569/4571950
java animatable.java
/*
* @(#)Animatable.java 5.1
*
*/
package CH.ifa.draw.util;
/**
* Animatable defines a simple animation interface
*/
public interface Animatable {
/**
* Perform a step of the animation
www.eeworm.com/read/240569/4571968
java drawingeditor.java
/*
* @(#)DrawingEditor.java 5.1
*
*/
package CH.ifa.draw.framework;
import java.awt.*;
/**
* DrawingEditor defines the interface for coordinating
* the different objects that participate in a
www.eeworm.com/read/239318/4602256
java~5~ graphicseditor.java~5~
package myframe;
/**
* Title:
* Description:
* Copyright: Copyright (c) 2002
* Company:
* @author
* @version 1.0
*/
import java.util.*;
public interface GraphicsEditor {
LinkedList draw
www.eeworm.com/read/212986/4933583
c rotated_text.c
/* Rotated Text
*
* This demo shows how to use GDK and Pango to draw rotated and transformed
* text. The use of GdkPangoRenderer in this example is a somewhat advanced
* technique; most applicatio
www.eeworm.com/read/209211/4986663
c iprint.c
#include
#include
#include
#include
int
iprint(char*,...)
{
return -1;
}