代码搜索:Draw
找到约 10,000 项符合「Draw」的源代码
代码结果 10,000
www.eeworm.com/read/307661/3721612
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/307661/3721711
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/305277/3778709
scala gosh.scala
object ShapeTest extends Application {
class Point(x : int, y : int) {
override def toString() = "[" + x + "," + y + "]"
}
abstract class Shape {
def draw() : unit
}
www.eeworm.com/read/283473/4078659
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/283473/4078663
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/283473/4078664
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/283473/4078766
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/273763/4193173
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/432926/1886101
pde neighborhood.pde
/**
* Neighborhood (OOP Example)
* By Ira Greenberg
*
* Draw a neighborhood of houses using
* Door, Window, Roof and House classes.
* Good example of class composition, with component
* Door,
www.eeworm.com/read/405777/2283294
java pentagon.java
public class Pentagon extends Shape {
public void draw() {
System.out.println("画了一个五边形");
}
}