C# Class Fractrace.Scheduler.PaintJob

Inheritance: IAsyncComputationStarter
显示文件 Open project: trafassel/Gestaltlupe Class Usage Examples

Public Methods

Method Description
Abort ( ) : void

Stop computing.

ComputationEnds ( ) : void

Is called, if computation of mIterate ends.

PaintJob ( IAsyncComputationStarter master, Graphics graphics ) : System

(master is used for progress bar).

Progress ( double progressInPercent ) : void

Show progress. Valid values are [0, ..., 100].

Run ( int updateSteps ) : void

Start Computing. Is called while rendering an animation.

Method Details

Abort() public method

Stop computing.
public Abort ( ) : void
return void

ComputationEnds() public method

Is called, if computation of mIterate ends.
public ComputationEnds ( ) : void
return void

PaintJob() public method

(master is used for progress bar).
public PaintJob ( IAsyncComputationStarter master, Graphics graphics ) : System
master IAsyncComputationStarter
graphics System.Drawing.Graphics
return System

Progress() public method

Show progress. Valid values are [0, ..., 100].
public Progress ( double progressInPercent ) : void
progressInPercent double
return void

Run() public method

Start Computing. Is called while rendering an animation.
public Run ( int updateSteps ) : void
updateSteps int
return void