代码搜索:Draw
找到约 10,000 项符合「Draw」的源代码
代码结果 10,000
www.eeworm.com/read/293767/8275545
java imagepanel.java
package IrisRecog;
/**
* ImagePanel.java
*
* Extends the functionality of the JPanel swing component to be able to draw
* pnt_Centered images in the panel. This class overrides the paintComponen
www.eeworm.com/read/393447/8287112
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/270119/11047639
java grids.java
/*
public class Canvasextends Component implements Accessible
A Canvas component represents a blank rectangular area of the screen onto which the application can draw or from which the application
www.eeworm.com/read/412767/11185989
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
www.eeworm.com/read/334652/12581855
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/334652/12582575
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/237625/13942068
txt history.txt
EhLib history
Version 4.2
In DBGridEh
+ Added IndicatorTitle property of TDBGridEhIndicatorTitle type:
The Upper left cell can react as button, draw the badge-triangle,
and disp
www.eeworm.com/read/132925/14065916
cpp line.cpp
// Line.cpp: implementation of the CLine class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "Draw.h"
#include "Line.h"
#ifdef _DEBU
www.eeworm.com/read/111805/15502935
java sketcher.java
// Chapter 18 Exercise 1
// Add the ability to draw an ellipse
/*
In SketchFrame class:
- added ellipseAction member
- constructor creates ellipseAction Action object and Ellipse menu item
www.eeworm.com/read/110378/15535143
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();
}