Welcome![Sign In][Sign Up]
Location:
Search - drawline

Search list

[Other resourcedrawline

Description: 在vc++6.0环境下,处理动态画线问题的应用,程序简单实用,放心使用!
Platform: | Size: 122921 | Author: 邢冬 | Hits:

[GDI-BitmapDRAWLINE

Description: 通过WINDOW API 的划线接口 实现各种图形 可以应用在矩形图形功能
Platform: | Size: 35311 | Author: zou | Hits:

[Other resourceDrawLine

Description: 画图的实现文件!!有要整个完整的加我qq号350430904
Platform: | Size: 1986 | Author: hehe | Hits:

[Other resourcedrawLine

Description: 单文档形式,画线功能,计时器画线功能,多线程画线功能
Platform: | Size: 40054 | Author: 天天 | Hits:

[Other resourceDrawLine

Description: 计算机图形学的各类直线算法的VC++实现,自定义类来实现
Platform: | Size: 41423 | Author: wang | Hits:

[Graph programdrawline

Description: 此程序是介绍了在turbo中介绍了画直线的程序,使复杂的东西形象化
Platform: | Size: 791 | Author: 陈手枪 | Hits:

[CSharpDrawLine

Description: 中点画线,DDA算法,计算机图形学,计算机基本算法,计算机图形处理基础
Platform: | Size: 30915 | Author: zhanglian | Hits:

[Button controldrawline

Description: 绘图)编写一个交互式绘图程序。要求: 可以选择图形的种类(直线、折线、矩形、[椭]圆、多边形及对应的填充图形)、绘图颜色(使用颜色公用对话框)、笔的粗细和风格、填充模式(包括填充颜色[与图案])、背景模式与颜色;
Platform: | Size: 33670 | Author: 钟国英 | Hits:

[Graph programDrawLine

Description: 图形学的基本算法的实现,基本图元的基本算法实现,主要是中点算法和Brsenham算法
Platform: | Size: 47886 | Author: kakaxi | Hits:

[OS Developdrawline

Description: 这是关于labview的一个画实时曲线的一个例子,非常实用,希望和大家多多交流
Platform: | Size: 11012 | Author: 李璞 | Hits:

[OS programDrawLine

Description: 仿照Drawcli程序,做的一个划线的操作,画出的线条可以自动收缩,变宽,变长,删除等等操作
Platform: | Size: 91587 | Author: ch | Hits:

[Graph programDrawLine

Description: (计算机图形学)分别用Bresenham, DDA及中点法实现画线段的基本方法
Platform: | Size: 13286 | Author: Zhong | Hits:

[GDI-Bitmapdrawline

Description: 最近一个项目中需要做一个读数据画成曲线的功能。这是一个读数据画曲线的程序。
Platform: | Size: 136388 | Author: 罗一凡 | Hits:

[Special EffectsVB超全图像处理

Description: picturebox有的属性基本上都有,扩展的图形方法有: DrawBezier DrawRoundRect DrawCurve DrawPie DrawPolygon DrawCircle DrawLine GetRGB 扩展的图像处理方法主要有: GetPictureData ShowPicture Invert GrayScale Exposal HistGramEqualize LogCalc ExpCalc ClearIsolatePoint Brightness AverageFilter MaxFilter MinFilter MedianFilter Filter Sharpen Contour Colorize Transparency Flip RotateImage Mosaic Dilate Erode Diffuse Soften Scanlines ShiftRGB Relief Emboss AddNoise Saturation Contrast GammaCorrection Binarization(四种方法) Thin EdgeDetection(四种方法) Hcm Fcm(图像分割) GrayToRealColor(7种方法) Hough DrawHistgram-PictureBox Some attributes are basically, graphical methods of expansion: DrawBezier DrawRoundRect DrawCurve DrawPie DrawPolygon DrawCircle DrawLine GetRGB scalable image processing methods are mainly: GetPictureData ShowPicture Invert GrayScale Exposal HistGramEqualize LogCalc ExpCalc ClearIsolatePoint Brightness AverageFilter MaxFilter MinFilter MedianFilter Filter Sharpen Contour Colorize Transparency Flip RotateImage Mosaic Dilate Erode Diffuse Soften Scanlines ShiftRGB Relief Emboss AddNoise Saturation Contrast GammaCorrection Binarization (four methods) Thin EdgeDetection (four methods) Hcm Fcm (image segmentation) GrayToRealColor (7 methods) Hough DrawHistgram
Platform: | Size: 96385 | Author: qixing2010@126.com | Hits:

[WEB Code细分时钟刻度算法.txt

Description: import java.awt.*; import javax.swing.*; public class Exercise8_12 extends JFrame { // Main method with three auguments: // args[0]: hour // args[1]: minute // args[2]: second public static void main(String[] args) { // Declare hour, minute, and second values int hour = 0; int minute = 0; int second = 0; // Check usage and get hour, minute, second if (args.length > 3) { System.out.println( "Usage: java DisplayClock hour minute second"); System.exit(0); } else if (args.length == 3) { hour = new Integer(args[0]).intValue(); minute = new Integer(args[1]).intValue(); second = new Integer(args[2]).intValue(); } else if (args.length == 2) { hour = new Integer(args[0]).intValue(); minute = new Integer(args[1]).intValue(); } else if (args.length == 1) { hour = new Integer(args[0]).intValue(); } // Create a frame to hold the clock Exercise8_12 frame = new Exercise8_12(); frame.setTitle("Exercise 8.12: Display Clock"); frame.getContentPane().add(new DrawClock(hour, minute, second)); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setSize(300, 350); frame.setVisible(true); } } class DrawClock extends JPanel { private int hour; private int minute; private int second; protected int xCenter, yCenter; protected int clockRadius; // Construct a clock panel public DrawClock(int hour, int minute, int second) { this.hour = hour; this.minute = minute; this.second = second; } // Draw the clock public void paintComponent(Graphics g) { super.paintComponent(g); // Initialize clock parameters clockRadius = (int)(Math.min(getSize().width, getSize().height)*0.7*0.5); xCenter = (getSize().width)/2; yCenter = (getSize().height)/2; // Draw circle g.setColor(Color.black); g.drawOval(xCenter - clockRadius,yCenter - clockRadius, 2*clockRadius, 2*clockRadius); g.drawString("12",xCenter-5, yCenter-clockRadius); g.drawString("9",xCenter-clockRadius-10,yCenter+3); g.drawString("3",xCenter+clockRadius,yCenter+3); g.drawString("6",xCenter-3,yCenter+clockRadius+10); // Draw second hand int sLength = (int)(clockRadius*0.85); int xSecond = (int)(xCenter + sLength*Math.sin(second*(2*Math.PI/60))); int ySecond = (int)(yCenter - sLength*Math.cos(second*(2*Math.PI/60))); g.setColor(Color.red); g.drawLine(xCenter, yCenter, xSecond, ySecond); // Draw minute hand int mLength = (int)(clockRadius*0.75); int xMinute = (int)(xCenter + mLength*Math.sin(minute*(2*Math.PI/60))); int yMinute = (int)(yCenter - mLength*Math.cos(minute*(2*Math.PI/60))); g.setColor(Color.blue); g.drawLine(xCenter, yCenter, xMinute, yMinute); // Draw hour hand int hLength = (int)(clockRadius*0.6); int xHour = (int)(xCenter + hLength*Math.sin((hour+minute/60.0)*(2*Math.PI/12))); int yHour = (int)(yCenter - hLength*Math.cos((hour+minute/60.0)*(2*Math.PI/12))); g.setColor(Color.green); g.drawLine(xCenter, yCenter, xHour, yHour); // Display current time in string g.setColor(Color.red); String time = "Hour: " + hour + " Minute: " + minute + " Second: " + second; FontMetrics fm = g.getFontMetrics(); g.drawString(time, (getSize().width - fm.stringWidth(time))/2, yCenter+clockRadius+30); // Display more details on the clock for (int i=0; i<60; i++) { double percent; if (i%5 == 0) { percent = 0.9; } else { percent = 0.95; } //细分时钟刻度 int xOuter = (int)(xCenter + clockRadius*Math.sin(i*(2*Math.PI/60))); int yOuter = (int)(yCenter - clockRadius*Math.cos(i*(2*Math.PI/60))); int xInner = (int)(xCenter + percent*clockRadius*Math.sin(i*(2*Math.PI/60))); int yInner = (int)(yCenter - percent*clockRadius*Math.cos(i*(2*Math.PI/60))); g.drawLine(xOuter, yOuter, xInner, yInner); } } }
Platform: | Size: 4270 | Author: hellosoft010@sina.com | Hits:

[GUI Developdrawlines

Description: 本程序的主要功能是利用橡皮条法在客户区内画直线。-this program is the main function of the use of rubber customers in the region linear paintings.
Platform: | Size: 36864 | Author: 伍亚军 | Hits:

[Special Effects1DrawLine

Description: vc编的绘图程序,算法维图形学中的非库调用有圆,线条等,有颜色选择.-vc addendum to the drawing process, algorithm-dimensional graphics, which called for a non-circular, such as lines, color choices.
Platform: | Size: 46080 | Author: 苏歧 | Hits:

[WEB Codedrawline-XiangPiJin

Description: 本程序主要是用于实现画图,动态画橡皮线条-this program is mainly for the realization of drawing, painting dynamic rubber lines
Platform: | Size: 49152 | Author: xhl | Hits:

[GDI-Bitmapxujin3000_booklabel_v1.0

Description: 书标元件 主要属性: AnySize:转角的角度大小 BackColor:背景色 DownStr:下行文字 DrawLine:是否显示横线 Font:文字字体属性 FrameColor:包围的边框色 FrameWidth:包围的边框宽度 LineColor:中间横线色 LineHeight:横线高度 LineWidth:横线长度 TopStr:上行文字 -standard components on the main attributes : AnySize : corner angle BackColor : background color DownStr : downlink words DrawLine : whether the hyphen Font : FrameColor text font attributes : surrounded by framed color FrameWidth : surrounded the rim width LineColor : Middle hyphen color LineHeight : hyphen highly LineWidth : horizontal line length TopStr : uplink words
Platform: | Size: 20480 | Author: 梁超 | Hits:

[Otherdrawline

Description: 计算机图形学画线,通过计算机图形学的方法。假设setpixel已知-Computer graphics drawing a line through the methods of computer graphics. Assuming known setpixel
Platform: | Size: 32768 | Author: dsafasd | Hits:
« 1 2 3 45 6 7 8 9 10 »

CodeBus www.codebus.net