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

Search list

[matlabrectangle

Description: 用matlab编程绘制矩形窗函数的幅频特性,窗函数形状的长度为10,20,50,100.-Programming using matlab draw rectangle window function of the amplitude-frequency characteristics, the shape of window function of length of 10,20,50,100.
Platform: | Size: 2048 | Author: hithit | Hits:

[ComboBoxDrawRect9.9

Description: 这个工程是一个简单的视频监控的播放器软件,可以实现双击放大,再双击还原功能,暂时还没有实现播放文件的功能-This project is a simple player software, video surveillance can be achieved double-click to enlarge, and then double-click the Restore feature to temporarily play the file has not yet achieved the function
Platform: | Size: 8162304 | Author: 杨金玲 | Hits:

[SymbianSymbianOSCCoeControl

Description: 首先调用SystemGc()获取图形上下文,SystemGc()是CCoeControl的一个成员函数;然后设置相应的图形上下文项;最后调用绘图函数DrawRect()画一个矩形。 所有的绘图都是通过图形上下文(graphics context,GC)来完成的。在Symbian OS中,定义了一个抽象类CGraphicsContext来统一图形上下文的接口,为设备无关的绘图提供了丰富的API。-First Call SystemGc () to obtain a graphics context, SystemGc () is a member function CCoeControl then set the appropriate graphics context item last call drawing functions DrawRect () draw a rectangle. All graphics are the context through graphics (graphics context, GC) to complete. In Symbian OS, the definition of an abstract class CGraphicsContext graphics context to unify the interface for device-independent graphics to provide a rich API.
Platform: | Size: 28672 | Author: litao | Hits:

[Graph DrawingdrawRect

Description: Cstatic 上绘图响应鼠标消息 -Drawing on the response of the mouse message Cstatic
Platform: | Size: 26624 | Author: 探戈 | Hits:

[GDI-BitmapDrawRect

Description: 1.这个工程能直接在vs2008下打开jpg.bmp.png等四种文件格式,不需要安装另外的库。2.实现了分割窗口,一个左窗口显示图像,右窗口用来安放按钮等控件。3.能用鼠标在客户区画一个矩形,并在右窗口显示左上角坐标。-1 This project can be opened directly in vs2008 jpg.bmp.png other four file formats, without having to install additional libraries. (2) to achieve a split window, a window displays the image left and right window control buttons to be placed. 3 can use the mouse to draw a rectangle in the client area, and in the right window shows the upper-left corner.
Platform: | Size: 12339200 | Author: | Hits:

[2D GraphicDrawRect

Description: 一个矩形操作类CRectGraph的设计与实现,画矩形的时候或自己修改一下,画其他图形的时候也很方便-DrawRect Class
Platform: | Size: 1309696 | Author: liuwei | Hits:

[OpenGL programdrawrect

Description: 计算机图形学画矩形应用VS2008加上MFC界面编程完成简单的人机交互可以改变参数进行绘图-Computer graphics, draw a rectangle
Platform: | Size: 11552768 | Author: 李向佳 | Hits:

[OS programDrawRect

Description: 简单画矩形,移动矩形,可通过菜单控制鼠标状态,-Simple rectangular painting, move the rectangle, the mouse can be controlled through the menu state,
Platform: | Size: 1956864 | Author: manmed | Hits:

[OtherDrawRect

Description: 设计一个简单的MFC程序,该程序在鼠标左键单击位置画一个矩形,矩形的大小是随机的。设计思路:(1)在程序中定义一个矩形数组,用来存放随机生成的矩形。(2)以鼠标单击位置为中心,以随机函数rand()产生的数为边长生成一个矩形,并将此矩形保存在矩形数组中。(3)然后产生一条WM_PAINT消息,并在相应的消息处理函数中重绘数组中的所有矩形。(源代码中有非常完整的注释,方便读者理解程序)-Design a simple MFC program, which position the mouse left click to draw a rectangle, rectangle size is random. Design: (1) in a program to define a rectangular array, used to store a randomly generated rectangle. (2) to the mouse click position as the center, random function rand () produces a number of side length generates a rectangle and rectangle stored in a rectangular array. (3) and then generates a WM_PAINT message, and in the corresponding message handler redraw all the rectangles in the array. (Source code for a very complete notes to facilitate readers to understand the program)
Platform: | Size: 3305472 | Author: xiaoyezi | Hits:

[Software Engineering97

Description: 编程思路:首先,本练习因为要制作抓不住的方块的实例,所以首先要制作界面中的方块,先通过Graphics类的对象函数g.setColor(Color.red)设置方块的颜色为红色,然后通过语句g.drawRect(0, 0, size().width - 1, size().height - 1)和g.drawRect(mx, my, (size().width/10) - 1, (size().height/10) - 1)绘制出两个矩形,这样就完成了方块的制作。然后,为了实现“抓不住方块”的效果,所以要响应鼠标事件,通过函数public boolean mouseDown(java.awt.Event evt, int x, int y响应按下鼠标的动作,通过光标位置的判断来避免鼠标抓到界面中的方块。-Programming ideas: first, to make this exercise because the instance box not catch, so first of all to make the interface box, first set the box through the Graphics class object function g.setColor (Color.red) color is red, then By statement g.drawRect (0, 0, size () width-. 1, size () height-. 1) and g.drawRect (mx, my, (size () .width/10)- 1, (size ( ) .height/10)- 1) draw two rectangles, thus completing the box production. Then, in order to achieve " catch box" effect, so to respond to mouse events, through the function public boolean mouseDown (java.awt.Event evt, int x, int y in response to pressing the mouse moves the cursor position to judge by Avoid mouse caught in the interface box.
Platform: | Size: 10240 | Author: 张飞 | Hits:

[androidmousetrack

Description: 知识点:使用Graphics类制作方块,使用java.awt.Event类响应鼠标动作,使用Color类设置方块的颜色,使用int类记录光标的位置。   实现思路:首先要制作界面中的方块,通过Graphics类的对象函数g.setColor(Color.red)设置方块的颜色为红色,然后通过语句g.drawRect(0, 0, size().width - 1, size().height - 1)和g.drawRect(mx, my, (size().width/10) - 1, (size().height/10) - 1)绘制出两个矩形,完成方块的制作。然后实现“抓不住的方块”效果,要响应鼠标事件,通过函数public boolean mouseDown(java.awt.Event evt, int x, int y响应按下鼠标的动作,通过光标位置的判断来避免鼠标抓到界面中的方块-Knowledge: Use the Graphics class production box, use java.awt.Event class response to mouse movements, using color Color class settings box, use the cursor position int class record. Realization of ideas: First, to make the interface box, set the box through the Graphics class object function g.setColor (Color.red) color is red, then the statement g.drawRect (0, 0, size () width- 1. , size () height-. 1) and g.drawRect (mx, my, (size () .width/10)- 1, (size () .height/10)- 1) draw two rectangles, complete the box production. Then realize "box not catch" effect, to respond to mouse events, through the function public boolean mouseDown (java.awt.Event evt, int x, int y action in response to pressing the mouse, by judging the mouse cursor position to avoid grasping the interface box
Platform: | Size: 10240 | Author: rpudn61 | Hits:

[source in ebookcx4

Description: 利用Java语言中的库方法fillRect和drawRect画两个长方形。-Method used in the Java language libraries fillRect and drawRect draw two rectangles.
Platform: | Size: 2048 | Author: 娄洹熙 | Hits:

[OtherRollingSubtitles

Description: IOS下的跑马灯,可自由定制速度。通过刷新drawRect实现。-rolling subtitles for ios. Implemented by refreshing drawRect.
Platform: | Size: 3072 | Author: sxk | Hits:

[TreeViewDesktop

Description: package com.cqvie import android.graphics.* import android.graphics.Paint.Style public class Kuai { //public int HANG, LIE //最大行、最大列 public int hang, lie //?前行、?前列 public int BianChang //方?的?? public int YanSe //方?的?色 public void Hua(Bitmap bmp) //在?布上?方? { Canvas c=new Canvas(bmp) Rect rc=new Rect( lie * BianChang, hang * BianChang, (lie+1) * BianChang,(hang+1) * BianChang) Paint paint=new Paint() paint.setColor(YanSe) paint.setStyle(Style.STROKE) //空心 paint.setStrokeWidth(2) //?? c.drawRect(rc, paint) } }-package com.cqvie import android.graphics.* import android.graphics.Paint.Style public class Kuai { //public int HANG, LIE //最大行、最大列 public int hang, lie //?前行、?前列 public int BianChang //方?的?? public int YanSe //方?的?色 public void Hua(Bitmap bmp) //在?布上?方? { Canvas c=new Canvas(bmp) Rect rc=new Rect( lie* BianChang, hang* BianChang, (lie+1)* BianChang,(hang+1)* BianChang) Paint paint=new Paint() paint.setColor(YanSe) paint.setStyle(Style.STROKE) //空心 paint.setStrokeWidth(2) //?? c.drawRect(rc, paint) } }
Platform: | Size: 2048 | Author: 朱晨臨 | Hits:

[Linux-Unixsystem

Description: Sums the area of any DrawRect command it sees.Scales out the bottom-right corner of any DrawRect command it sees by 2x.
Platform: | Size: 22528 | Author: leimfxy | Hits:

[2D GraphicDrawRect

Description: 在matlab中画一个矩形框,并对它进行运动控制操作-Draw a rectagle in matlab
Platform: | Size: 1024 | Author: 王肖 | Hits:

CodeBus www.codebus.net