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

Search list

[Software Engineeringundo_redo_articles

Description: 我在做图形系统时,需要在编辑图形后进行undo,redo,这些是我参照的论文。感觉挺有帮助的。-I was doing the graphics system, you need to edit the graphic after undo, redo, these are my reference papers. Feeling Tingyou help.
Platform: | Size: 500736 | Author: 扬帆 | Hits:

[Chess Poker gamesChess

Description: 这是一个非常基本的国际象棋程序2的球员。我是来弥补计算机科学使用工具中央结算系统图形包中的类图形程序。虽然这是一个易于使用的软件包,它是在它的使用有限。<br> <br>此程序有一些inherant limiatations。首先,因为只有JPEG支持可用,我不得不作出许多图像的两倍(因为JPEG格式不支持透明像素)。该程序将无法检测检查或将死,因为我没有时间来实现这些功能。正如您将看到,没有撤消功能。这可能是有点容易实现。最大的错误是我在作品的方式存储在内存中。他们居住在一个8 × 8矩阵,但有一个错误的方向。这使得它非常混乱计算之间的2个职位件量对角线。<br> <br>请阅读更多关于此问题的信息Orientation.txt文件。<BR> <BR>在最后,我实施了一项功能,黑人的画面时,窗口没有焦点。这是一个比较复杂系统的一部分,减少闪烁的图形。如果不加以制止,图形闪烁在恼人的利率。- This is a very basic 2 player chess program. I was required to make a graphics program for a computer science class using the CMU Graphics package. While this is an easy to use package, it is limited in it s uses.<br><br> This program has some inherant limiatations. First, since only jpeg support is available, I had to make twice as many images (since jpeg format does not support transparent pixels). This program will not detect check or checkmate as I did not have time to implement these features. As you will see, there is no undo feature. This could be somewhat easily implemented. The largest error I made was with the way pieces are stored in memory. They reside within a 8 x 8 matrix but have a wrong orientation. This makes it extremely confusing to calculate the ammount of pieces between 2 positions diagonally.<br><br> Please read the Orientation.txt file for more information on this problem.<br><br> Lastly, I have implemented a feature that bla
Platform: | Size: 502784 | Author: jimmy sia | Hits:

[OtherTextDiff

Description: 功能强大的文本比较器TextDiff的用途是按行比较两个文本文件的异同,TextDiff能用不同颜色区分两个文件之间的异同并支持拖放,默认情况下黑色字符表示相同的行,绿色加亮表示不同的行,红色加亮表示删除的行,蓝色加亮表示添加的行。比较两个14M的文本文件,从打开到比较完毕只需2秒即可完成,并可生成报告文件,以供查看。 -About TextDiff: TextDiff has been created primarily to demonstrate the speed and accuracy of my TDiff Delphi component so it lacks some of the features of a commercial text compare and merge utility. Main features: ?a very fast compare algorithm ?color highlighting of differences ?blank characters and case differences can be ignored ?easy navigation between differences ?easy merging ?in-place text editing ?multiple undo/redo of text changes ?search and replace text ?freeware with full source code
Platform: | Size: 484352 | Author: bronco | Hits:

[OS DevelopProcessScheduling

Description: 设计一个有 N个进程并行的优先级调度程序:每个进程有一个进程控制块( PCB)表示。进程控制块可以包含如下信息:进程名、优先数、到达时间、需要运行时间、已用CPU时间、进程状态等等。   进程的优先数及需要的运行时间可以事先人为地指定(也可以由随机数产生)。进程的到达时间为进程输入的时间。   进程的运行时间以时间片为单位进行计算。   每个进程的状态可以是就绪 W(Wait)、运行R(Run)、或完成F(Finish)三种状态之一。   就绪进程获得 CPU后都只能运行一个时间片。用已占用CPU时间加1来表示。   如果运行一个时间片后,进程的已占用 CPU时间已达到所需要的运行时间,则撤消该进程,如果运行一个时间片后进程的已占用CPU时间还未达所需要的运行时间,也就是进程还需要继续运行,此时应将进程的优先数减1(即降低一级),然后把它插入就绪队列等待CPU。   每进行一次调度程序都打印一次运行进程、就绪队列、以及各个进程的 PCB,以便进行检查。 重复以上过程,直到所要进程都完成为止。-Design of a parallel to the process N one priority scheduling process: Each process has a process control block (PCB) said. Process control block may contain the following information: process name, priority number, arrival time, need to run time, has spent CPU time, the process of the state and so on. The process priority number and needs of the running time can be artificially designated in advance (you can also by a random number generator). Process, the arrival time for the process input time. The process of running time to time slices are calculated as a unit. The state of each process can be ready W (Wait), run the R (Run), or the completion of F (Finish), one of three states. Ready access to CPU after the process can only run one time slice. CPU time has been occupied with the plus one indication of this. If you are running a time slice, after the process has been CPU-time has reached the required running time, then undo the process, if a time slice to run after the pr
Platform: | Size: 1024 | Author: 程天晨 | Hits:

[Otherjincheng

Description: 模拟高优先权优先的进程调度算法 采用最高优先数优先的调度算法(即把处理机分配给优先数最高的进程),每个进程有一个进程控制块(PCB)表示。进程控制块可以包含如下信息:进程名、优先数、需要运行时间、已用CPU时间、进程状态等等。每个进程的状态可以是就绪W(Wait)、运行R(Run)、或完成F(Finish)三种状态之一。 进程的优先数及需要的运行时间可以事先人为地指定,进程的运行时间以时间片为单位进行计算。 就绪进程获得CPU后都只能运行一个时间片。用已占用CPU时间加1来表示。 如果运行一个时间片后,进程的已占用 CPU时间已达到所需要的运行时间,则撤消该进程,如果运行一个时间片后进程的已占用CPU时间还未达所需要的运行时间,也就是进程还需要继续运行,此时应将进程的优先数减1(即降低一级),然后把它插入就绪队列等待CPU。 每进行一次调度程序都打印一次运行进程、就绪队列、以及各个进程的 PCB,以便进行检查。 重复以上过程,直到所有进程都完成为止。 -Simulation of high-priority process scheduling priority The highest priority by the number of priority scheduling algorithm (ie the number of processors allocated to the highest priority process), each process has a process control block (PCB) said. Process control block can contain the following information: process name, priority number, need to run time, CPU time has been used, the process of state and so on. The state of each process can be ready W (Wait), run the R (Run), or the completion of F (Finish) one of three states. Process priority number and needs of the running time can be specified in advance artificially, the process of running time to calculate the time-piece. Ready access to CPU process can only run one time after the film. CPU time has been occupied with a plus 1 to that. If you run a time slice, the process has been CPU-time has reached the required running time, then undo the process, if a time slice to run after the process has yet to take up CPU time to r
Platform: | Size: 1700864 | Author: 金小山 | Hits:

[Linux-UnixQEditor

Description: QEditor -程序员编辑器的。他是十分强大的编辑器:开放代码在GPL的授权平台,它是由Qt完全编写。支持功能:折叠文本 编号的行数 添加面板书签,支持撤消。使用 Qt Designer作为插件。 -QEditor- the editor for the programmer. He is the powerful editor with the open code under license GPL. Features: Cross- platform It is written completely on Qt. Minimal requirements Qt 4.2.x Adjustment of styles of allocation for various programming languages Folding the text numbering the lines panel bookmark separation fresh bracket Support undo/redo. Use in Qt Designer as a plugin.
Platform: | Size: 3687424 | Author: 豆腐 | Hits:

[Special Effects498q

Description: vc开发丰富的图形类型(直线,平行四边形,矩形,多边形,圆角矩形,圆,椭圆,二次均匀B样条曲线,三次参数样条曲线,贝齐埃曲线)       丰富的图形操作(属性设置,拖动,放大/缩小,删除,拷贝,旋转,图形切割,图形填充,编辑等) 软件通用功能(撤消/恢复,打印,文件操作-vc development of rich graphical type (straight, parallelogram, rectangle, polygon, rounded rectangle, round, oval, quadratic uniform B-spline curve, cubic spline curve parameters, Bei Qiai curve) rich graphics operations (property , drag, zoom in/out, delete, copy, rotate, graphics, cutting, filling graphics, editing, etc.) software common functions (undo/redo, printing, file operations
Platform: | Size: 349184 | Author: 威客 | Hits:

[JSPpainter2D

Description: 讲述了画2D图形的技术,实现了一个2D的画板程序,能够画2D的弦,圆和矩形,能指定圆的颜色,并能够撤销和恢复图形-About the art 2D graphics technology, a 2D' s Sketchpad program, can draw a 2D string, round and rectangular, can specify the color circle, and the ability to undo and redo graphics
Platform: | Size: 6144 | Author: jakeyiz | Hits:

[Chess Poker gamesclzxq

Description: 运用java编写的单机版的中国象棋,不过不是人机对站,而是自己跟自己对站,或是跟别人对站,是可以悔棋的。-Prepared using java stand-alone version of Chinese chess, but not the machine on the station, but with their own stations, or with others on the station, it can undo the.
Platform: | Size: 25600 | Author: 程龙 | Hits:

[Chess Poker gameswuziqi

Description: 五子连珠,分两种难度,可悔棋及选择谁先下-Wuzilianzhu, two types of difficulty, and choose exactly who can undo the next
Platform: | Size: 3044352 | Author: 陈少勇 | Hits:

[JSP/JavaChessFive

Description: 别人使用java写的人机对弈五子棋程序,可以设置人先下或电脑先下,有悔棋功能。附带源代码。-Written by other people using the java machine play chess backgammon program, you can set or computer before the next one first, there is undo function. With source code.
Platform: | Size: 36864 | Author: xiezhifu | Hits:

[Software Engineering5sourcecode2

Description: 选择年/月的控制,改变鼠标形状的例子1,2,Undo/Redo管理器,一个异常处理的例子 -Select Year/Month of control, change the mouse shape example 1,2, Undo/Redo manager, an exception handling example
Platform: | Size: 563200 | Author: fumian | Hits:

[JSP/JavaNetOthello13

Description: 黑白棋编码,其中有各种方法实现了悔棋,网络对战等功能-Othello coding, including ways to achieve the undo, online play and other functions
Platform: | Size: 107520 | Author: Jim | Hits:

[OtherWinHandler

Description: WinHandler lets you manipulate the existing windows on your system. You can resize, move, change style and text, kill, copy, paste, undo etc. All by using Win32 API calls. It is a good demonstration (in my opinion) of Enumeration functions, SendMessage() and SetWindowPos()
Platform: | Size: 10240 | Author: d3graph | Hits:

[Process-Threadsy3

Description: 进程的创建和控制 创建一个windows窗口程序,含有4个菜单项,分别用来创建和撤消记事本进程和计算器进程。若相应进程已经创建了,再选择创建进程菜单,则弹出对话框提示进程已经创建 若进程已经撤消了,再选择撤消进程菜单,则弹出对话框提示进程已经撤消。注意考虑从主程序外部启动和关闭进程的情况。-Process creation and control procedures to create a windows window, with four menu items, respectively Notepad to create and undo the process and the calculator process. If the appropriate process has been created, and then select the menu creation process, then the pop-up dialog box prompts the process has been created if the process has been withdrawn, and then select the menu withdrawal process, the pop-up dialog box prompts the process had been withdrawn. Note to consider from the main program startup and shutdown process of external circumstances.
Platform: | Size: 778240 | Author: 陈婷婷 | Hits:

[Chess Poker gameschess

Description: 五子棋,含有双人游戏与人机游戏的五子棋游戏,可以悔棋并自动判断输赢-Five in a Row, with double games and machine games backgammon games, you can undo and automatically determine the winners and losers
Platform: | Size: 547840 | Author: Michael Jiang | Hits:

[Chess Poker games201061912441315

Description: 这款围棋游戏支持悔棋、载入棋局、保存棋局、适时显示走棋状态信息等,另外这些源代码都下是出自一人之手,在编程风格上会大不相同,感兴趣的朋友可以研究一下每个人的实现代码,很有意思哦。 -This chess game supports undo, load the game save the game time display status information such as playing chess, while the source code is from a person under the hand of the programming style will be different, interesting friends can look at implementation code for each person, very interesting oh.
Platform: | Size: 928768 | Author: 李学兵 | Hits:

[JSP/JavaWuziqidaima

Description: 1. 能上手机上运行并自动检测手机屏幕,同时支持横屏和竖屏。 2. 计算机有较高的棋力,较为优化的算法。 3. 程序有较好的跨平台性。 4. 程序界面采用线条与图形组成。 5. 实现人机对战。 6.实现悔棋功能 -1. Can be run on the phone and automatically detect mobile screen supports portrait and landscape screen. 2. Thinking depth computer has a higher, more optimal algorithms. 3. Program has a good cross-platform nature. 4. Program interface and graphics using lines formed. 5. To achieve human-computer play against. 6. Undo function to achieve
Platform: | Size: 6144 | Author: 洪志雄 | Hits:

[Mathimatics-Numerical algorithms5five

Description: 基于人工智能的神经网络开发的五子棋,带悔棋功能-Neural network based on artificial intelligence developed backgammon, with undo feature
Platform: | Size: 278528 | Author: 杜佳佳 | Hits:

[Other Gameswuzhiqi

Description: VC简单的智能五子棋游戏,支持电脑先走或人先走棋或者人机对战,支持悔棋,暂不支持网络对战,适合VC新手研究游戏编写.-VC Smart Gobang simple games, to support the computer go first or to walk first, or human-computer chess gaming, support for undo, not support online play, written for VC novices of the game.
Platform: | Size: 169984 | Author: xujun | Hits:
« 1 2 ... 4 5 6 7 8 910 11 12 13 14 ... 23 »

CodeBus www.codebus.net