代码搜索:Draw

找到约 10,000 项符合「Draw」的源代码

代码结果 10,000
www.eeworm.com/read/405149/2294740

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/384473/2599752

cs program.cs

using System; namespace AbstractExample { public abstract class Shape { public virtual void Draw() { Console.WriteLine("画一种图形!"); } public
www.eeworm.com/read/373842/2757444

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/373842/2757447

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/373842/2757448

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/373842/2757547

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/265319/4283100

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/265319/4284012

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/473622/6847321

m drawrawdata.m

%DRAWRAWDATA Draw raw data of sensors. % DRAWRAWDATA(SETUPFILENAME,STARTSTEP,NSTEPS) plots the raw data % of the sensors specified in the file SETUPFILENAME, the setup % file of the experiment.
www.eeworm.com/read/195394/8158990

c mcdraw.c

/* * MICROCAD Drawing utility * * This is a "boiled down" set of routines to draw a MICROCAD drawing file. * The main purpose of this program is to provide a starting point, should * you wis