WO1995001615A1 - Graphic edge system - Google Patents

Graphic edge system Download PDF

Info

Publication number
WO1995001615A1
WO1995001615A1 PCT/US1994/000013 US9400013W WO9501615A1 WO 1995001615 A1 WO1995001615 A1 WO 1995001615A1 US 9400013 W US9400013 W US 9400013W WO 9501615 A1 WO9501615 A1 WO 9501615A1
Authority
WO
WIPO (PCT)
Prior art keywords
edge
recited
processing
objects
scan line
Prior art date
Application number
PCT/US1994/000013
Other languages
French (fr)
Inventor
Richard D. Webb
Arthur W. Cabral
Original Assignee
Taligent, Inc.
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Taligent, Inc. filed Critical Taligent, Inc.
Priority to DE69410458T priority Critical patent/DE69410458D1/en
Priority to AU60817/94A priority patent/AU6081794A/en
Priority to JP50345695A priority patent/JP3392870B2/en
Priority to EP94907132A priority patent/EP0691012B1/en
Publication of WO1995001615A1 publication Critical patent/WO1995001615A1/en

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06TIMAGE DATA PROCESSING OR GENERATION, IN GENERAL
    • G06T11/002D [Two Dimensional] image generation
    • G06T11/40Filling a planar surface by adding surface attributes, e.g. colour or texture
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06TIMAGE DATA PROCESSING OR GENERATION, IN GENERAL
    • G06T15/003D [Three Dimensional] image rendering
    • G06T15/50Lighting effects
    • G06T15/80Shading

Definitions

  • This invention generally relates to improvements in computer systems and more particularly to a system and method for processing edge information on a graphic display.
  • Prior software operating system architectures are limited in their edge processing capability.
  • a limitation is that the operating system architecture may not be able to support a given peripheral device for which the architecture was not designed or could not be modified to support.
  • a prior architecture may only process graphic edge information in a single, pre-defined manner.
  • Figure 1 is a block diagram of a personal computer system in accordance with a preferred embodiment
  • Figure 2 is an illustration of a pair of graphic edges in accordance with a preferred embodiment
  • Figure 3 illustrates the sort order in accordance with a preferred embodiment
  • Figure 4 is an illustration of a star-polygon, even-odd rule in accordance with a preferred embodiment
  • Figure 5 is an illustration of a star polygon employing a winding number rule in accordance with a preferred embodiment
  • Figure 6 illustrates a centered frame of a star polygon following a centered even-odd rule in accordance with a preferred embodiment
  • Figure 7 illustrates a centered frame of a star polygon following a centered winding number rule in accordance with a preferred embodiment
  • Figure 8 illustrates an inset frame of a star polygon following the inset even- odd rule in accordance with a preferred embodiment
  • Figure 10 illustrates an outset frame of a star polygon following the outset even-odd rule in accordance with a preferred embodiment
  • Figure 11 illustrates an outset frame of a star polygon following the outset winding number rule in accordance with a preferred embodiment
  • Figure 12 illustrates the edge engines used by discrete devices in accordance with a preferred embodiment
  • Figure 13 is an area primitive with the illustrated structure in accordance with a preferred embodiment
  • Figure 14 illustrates a method for determining the state of the current position in accordance with a preferred embodiment
  • Figure 15 illustrates various edges in accordance with a preferred embodiment
  • Figure 16 illustrates scan conversion in the positive y direction in accordance with a preferred embodiment
  • Figure 17 illustrates a straight edge example in accordance with a preferred embodiment
  • Figure 18 is a flowchart of the logic in accordance with a preferred embodiment
  • FIG 19 is a flowchart setting forth an embodiment of edge transition processing in accordance with the subject invention.
  • FIG. 20 is a flowchart setting forth an embodiment of edge transition processing in accordance with the subject invention.
  • FIG. 21 is a block diagram setting forth an embodiment of edge transition processing in accordance with the subject invention.
  • FIG. 1 illustrates a typical hardware configuration of a computer in accordance with the subject invention having a central processing unit 10, such as a conventional microprocessor, with a built in non-volatile storage 11, and a number of other units interconnected via a system bus 12.
  • a central processing unit 10 such as a conventional microprocessor
  • FIG. 1 illustrates a typical hardware configuration of a computer in accordance with the subject invention having a central processing unit 10, such as a conventional microprocessor, with a built in non-volatile storage 11, and a number of other units interconnected via a system bus 12.
  • the workstation shown in Figure 1 includes a Random Access Memory (RAM) 14, Read Only Memory (ROM) 16, an I/O adapter 18 for connecting peripheral devices such as a disk unit 20, and a diskette unit 21 to the bus, a user interface adapter 22 for connecting a keyboard 24, a mouse 26, a speaker 28, a microphone 32, and /or other user interface devices such as a touch screen device (not shown) to the bus, a communication adapter 34 for connecting the workstation to a data processing network 23 and a display adapter 36 for connecting the bus to a display device 38.
  • the computer has resident thereon an operating system such as the Apple System/7 ® operating system.
  • the invention is implemented in the C++ programming language using object oriented programming techniques.
  • object oriented programming techniques Object-Oriented Programming (OOP) objects are software entities comprising data structures and operations on the data. Together, these elements enable objects to model virtually any real-world entity in terms of its characteristics, represented by its data elements, and its behavior, represented by its data manipulation functions. In this way, objects can model concrete things like people and computers, and they can model abstract concepts like numbers or geometrical concepts.
  • OOP Object-Oriented Programming
  • objects can model concrete things like people and computers, and they can model abstract concepts like numbers or geometrical concepts.
  • the benefits of object technology arise out of three basic principles: encapsulation, polymorphism and inheritance. Objects hide, or encapsulate, the internal structure of their data and the algorithms by which their functions work.
  • objects present interfaces that represent their abstractions cleanly with no extraneous information.
  • Polymorphism takes encapsulation a step further. The idea is many shapes, one interface.
  • a software component can make a request of another component without knowing exactly what that component is.
  • the component that receives the request interprets it and figures out according to its variables and data, how to execute the request.
  • the third principle is inheritance, which allows developers to reuse pre-existing design and code. This capability allows developers to avoid creating software from scratch. Rather, through inheritance, developers derive subclasses that inherit behaviors, which the developer then customizes to meet their particular needs.
  • a prior art approach is to layer objects and class libraries in a procedural environment.
  • Many application frameworks on the market take this design approach.
  • this design there are one or more object layers on top of a monolithic operating system. While this approach utilizes all the principles of encapsulation, polymorphism, and inheritance in the object layer, and is a substantial improvement over procedural programming techniques, there are limitations to this approach. These difficulties arise from the fact that while it is easy for a developer to reuse their own objects, it is difficult to use objects from other systems and the developer still needs to reach into the lower non-object layers with procedural Operating System (OS) calls.
  • OS procedural Operating System
  • frameworks Another aspect of object oriented programming is a framework approach to application development.
  • One of the most rational definitions of frameworks come from Ralph E. Johnson of the University of Illinois and Vincent F. Russo of Purdue. In their 1991 paper, Reusing Object-Oriented Designs, University of Illinois tech report UIUCDCS91-1696 they offer the following definition: "An abstract class is a design of a set of objects that collaborate to carry out a set of responsibilities. Thus, a framework is a set of object classes that collaborate to execute defined sets of computing responsibilities.” From a programming standpoint, frameworks are essentially groups of interconnected object classes that provide a pre-fabricated structure of a working application.
  • a user interface framework might provide the support and "default" behavior of drawing windows, scrollbars, menus, etc. Since frameworks are based on object technology, this behavior can be inherited and overridden to allow developers to extend the framework and create customized solutions in a particular area of expertise. This is a major advantage over traditional programming since the programmer is not changing the original code, but rather extending the software. In addition, developers are not blindly working through layers of code because the framework provides architectural guidance and modeling but at the same time frees them to then supply the specific actions unique to the problem domain.
  • frameworks can be viewed as a way to encapsulate or embody expertise in a particular knowledge area.
  • Corporate development organizations, Independent Software Vendors (ISV)s and systems integrators have acquired expertise in particular areas, such as manufacturing, accounting, or currency transactions as in our example earlier. This expertise is embodied in their code.
  • Frameworks allow organizations to capture and package the common characteristics of that expertise by embodying it in the organization's code. First, this allows developers to create or extend an application that utilizes the expertise, thus the problem gets solved once and the business rules and design are enforced and used consistently.
  • frameworks and the embodied expertise behind the frameworks have a strategic asset implication for those organizations who have acquired expertise in vertical markets such as manufacturing, accounting, or bio-technology would have a distribution mechanism for packaging, reselling, and deploying their expertise, and furthering the progress and dissemination of technology.
  • frameworks There are many kinds of frameworks depending on the level of the system and the nature of the problem.
  • the types of frameworks range from application frameworks that assist in developing the user interface, to lower level frameworks that provide basic system software services such as communications, printing, file systems support, graphics, etc.
  • Commercial examples of application frameworks are MacApp (Apple), Bedrock (Symantec), OWL (Borland), NeXTStep App Kit (NeXT), and Smalltalk-80 MVC (ParcPlace) to name a few.
  • Programming with frameworks requires a new way of thinking for developers accustomed to other kinds of systems. In fact, it is not like "programming" at all in the traditional sense.
  • DOS or UNIX the developer's own program provides all of the structure.
  • the operating system provides services through system calls — the developer's program makes the calls when it needs the service and control returns when the service has been provided.
  • the program structure is based on the flow-of-control, which is embodied in the code the developer
  • system frameworks such as those included in a preferred embodiment, leverage the same concept by providing system level services, which developers, such as system programmers, use to subclass /override to create customized solutions.
  • system level services which developers, such as system programmers, use to subclass /override to create customized solutions.
  • developers such as system programmers
  • subclass /override to create customized solutions.
  • a multi-media framework which could provide the foundation for supporting new and diverse devices such as audio, video, MIDI, animation, etc.
  • the developer that needed to support a new kind of device would have to write a device driver.
  • the developer only needs to supply the characteristics and behavior that is specific to that new device.
  • the developer in this case supplies an implementation for certain member functions that will be called by the multi-media framework.
  • An immediate benefit to the developer is that the generic code needed for each category of device is already provided by the multi-media framework. This means less code for the device driver developer to write, test, and debug.
  • Another example of using system framework would be to have separate I/O frameworks for SCSI devices, NuBus cards, and graphics devices. Because there is inherited functionality, each framework provides support for common functionality found in its device category. Other developers could then depend on these consistent interfaces to all kinds of devices.
  • a preferred embodiment takes the concept of frameworks and applies it throughout the entire system.
  • MacApp For the commercial or corporate developer, systems integrator, or OEM, this means all the advantages that have been illustrated for a framework such as MacApp can be leveraged not only at the application level for such things as text and user interfaces, but also at the system level, for services such as graphics, multi-media, file systems, I/O, testing, etc.
  • Application creation in the architecture of a preferred embodiment will essentially be like writing domain-specific puzzle pieces that adhere to the framework protocol. In this manner, the whole concept of programming changes. Instead of writing line after line of code that calls multiple API hierarchies, software will be developed by deriving classes from the preexisting frameworks within this environment, and then adding new behavior and/or overriding inherited behavior as desired.
  • the developer's application becomes the collection of code that is written and shared with all the other framework applications. This is a powerful concept because developers will be able to build on each other's work. This also provides the developer the flexibility to customize as much or as little as needed. Some frameworks will be used just as they are. In some cases, the amount of customization will be minimal, so the puzzle piece the developer plugs in will be small. In other cases, the developer may make very extensive modifications and create something completely new.
  • a program resident in the RAM 14, and under the control of the CPU 10 is responsible for managing various tasks using an object oriented graphic framework.
  • a preferred embodiment employs an edge engine of a rendering pipeline to manipulate a list of TGrafEdges. It is used only by discrete devices. For example, in the TFrameBuffer device, the edge engine generates scanline spans from the edges representing filled and framed portions of a primitive. This process is known as scan conversion.
  • a TGrafEdge is a polymorphic scan conversion primitive. An illustration of a pair of graphic edges is presented in Figure 2. Each graphic edge 230, 240 has a minimum Y value 210, a starting X value 200, a height 220, and a virtual Step method. The Step method updates the X value for the next scanline (the next integer Y value).
  • a TGrafEdge can thus describe any curve that is monotonic in Y; i.e., it has a single X value for every scan line it spans. TGrafEdge also has a reference to a single CAG node object, which is used to determine whether a point is inside or outside the entire geometry.
  • a simple primitive is easy to render; it has a single wrap count that determines whether a point is inside or outside the geometry.
  • the TGArea primitive can be arbitrarily complex. Each sub-primitive has its own independent wrap count. The wrap counts of all the sub-primitives can be used to calculate the state of the entire primitive.
  • the structure for doing inside /outside calculations is set up by the TGArea and passed to the edge engine. However, the overhead associated with the more complex inside /outside calculations should be incurred only for the TGArea primitive.
  • Subclasses of the edge engines will provide anti-aliasing scan conversion, and can be made for accelerated edges, such as rectilinear edges.
  • Pixel perfection is important for edge engines, since edge engines perform scan-conversion to discrete device units. Pixel perfection defines which pixels are modified, given a set of edges that define an area in device space. Even though the word "pixel" is used, pixel perfection can be useful for other discrete devices, since it defines where the discrete units lie on the device's coordinate system.
  • Scan conversion is the process of converting a geometry into horizontal scan line spans, which can then be drawn on a discrete graphic device.
  • a geometry can be filled, framed, or both.
  • the algorithm to draw a geometry that is filled and /or framed ensures that no area is drawn twice, allowing transfer modes and transparency to function correctly.
  • An edge engine fills a geometry that is defined by list of TGrafEdges representing its outline. A user can specify the outline of a geometry by tracing its perimeter in an arbitrary direction. This determines the sign of each edge in the list. The sign of an edge is positive if it points in the direction of positive y. Edges that have no effect on the output are discarded.
  • Figure 3 illustrates the sort order in accordance with a preferred embodiment. Edges are sorted first by their smaller y values, and then by their x values within a particular y value. For each scan line that intersects the edges, one or more spans in x are generated. This is accomplished by always keeping an "active" list of edges; that is, the edges that cross the current scan line. For each scan line, the active edge list is found. Then, as an edge is crossed, one of the following rules is applied to generate the appropriate spans for the scan line: the even-odd rule or the winding number rule.
  • FIG. 4 is an illustration of the generated star span for each pair of edges in accordance with a preferred embodiment.
  • Winding number rule As an edge is crossed, its sign is added to a winding number initially set to zero. When the winding number becomes non-zero, a span is started. When the winding number becomes zero, the span is ended. This produces the effect of filling all the area within the outer boundary of the polygon.
  • Figure 5 is an illustration of a star polygon employing the winding number rule in accordance with a preferred embodiment.
  • the rule that is applied depends on the primitive being rendered.
  • the TGPolygon primitive which defines a polygon graphic object, contains a parameter that specifies which rule to use.
  • the TGEllipse primitive may use either rule because both rules produce the same result when applied to a non-self-intersecting geometry.
  • Two types of frames can be drawn around an object, depending on the intended purpose of the frame: the hairline frame and the thick frame. Both are discussed below.
  • the thick frame can be of any thickness. End caps, joint styles, and dashing can be applied as desired.
  • the edge engine scan converts the thick frame and the fill at the same time.
  • the TGrafEdges that represent both sides of the frame (left and right) are generated and inserted into the list with the fill edges.
  • the direction, and thus the sign, of a frame edge is the same as that of the fill edge from which it was created.
  • two winding numbers are kept: one for the left frame edges and one for the right frame edges.
  • the spans generated for the frame depend on which fill rule is used:
  • Winding number rule As a frame edge is encountered, its sign is added to the appropriate winding number (left or right). When the signs of the two winding numbers become unequal, a span is started. When the signs become equal again, the span is ended.
  • the frame may overlap the filled area. However, since the filled area and the frame are drawn together, no part of the area is drawn twice.
  • the thickness of the frame is centered around the outline of the filled area. This is accomplished by allowing the spans generated for the frame to supersede those generated for the fill.
  • Figure 6 illustrates a centered frame of a star polygon following a centered even-odd rule in accordance with a preferred embodiment
  • Figure 7 illustrates a centered frame of a star polygon following a centered winding number rule in accordance with a preferred embodiment.
  • the thickness of the frame is completely within the outline of the filled area.
  • the spans generated for the frame supersede those generated for the fill, but they are drawn only when there are fill spans generated. In other words, the frame is clipped to the fill geometry. This is the opposite of the outset frame.
  • Figure 8 illustrates an inset frame of the star polygon following the inset even-odd rule in accordance with a preferred embodiment
  • Figure 9 illustrates an inset frame of the star polygon following the winding number rule.
  • Figure 10 illustrates an outset frame of the star polygon following the outset even-odd rule in accordance with a preferred embodiment.
  • Figure 11 illustrates an outset frame of the star polygon following the outset winding number rule in accordance with a preferred embodiment.
  • FIG 12 illustrates the edge engines used by discrete devices.
  • the anti- aliased edge engines are not shown.
  • TEdgeEngine is an abstract class from which all the edge engines are derived. It contains a pure virtual function that accepts TGrafEdges. It also contains a pure virtual Render function. TFillEdgeEngine performs aliased filling of the geometry described by the list of TGrafEdges.
  • the edges can be of any type.
  • TRectilinearFillEdgeEngine performs aliased filling of the geometry described by the list of rectilinear TGrafEdges. It is an optimization of the TFillEdgeEngine. It assumes that each TGrafEdge is a vertical line. TFillAndFrameEdgeEngine performs aliased filling and framing of the geometry described by the list of TGrafEdges.
  • the edges can be of any type.
  • TRectilinearFillAndFrameEdgeEngine performs aliased filling and framing of the geometry described by the list of rectilinear TGrafEdges. It is an optimization of the TFillEdgeEngine. It assumes that each TGrafEdge is a vertical line.
  • Another reason to subclass an edge engine is to accommodate antialiasing. Efficient implementations share a common optimization to convolve only the areas around the edges with the filter kernel. This optimization not only dodges a great deal of filtering operations in the interior of the shape, but it also allows for the use of simple non compositing TSpanPainter methods to be used such as PaintSpans.
  • An antialiasing edge engine might take two approaches to convolving the edges.
  • the super sampling approach scan converts at a higher resolution, rendering into subpixel bitmaps which represent detail at a subpixel level.
  • the subpixel scan conversion can be precalculated into a table which is indexed via some number of significant bits from the fractional component of the edges entry and exit coordinates. These bitmaps are typically 4x8 pixels. If a box filter is being used, all that is required is a population tally of the bitmaps bits. If a higher quality filter, which has a support size greater than .5, is used, then each outputted pixel's transparency is determined from the weighted average of itself and neighboring bitmaps.
  • the higher quality filter imposes one additional problem. Scan lines cannot be output until all of their contributing subpixel bitmasks have been convolved with the filter kernel and summed. This means that the edge engine will be outputting spans one to two scanlines behind their scan conversion. These approaches are typically taken when the vertices are integers or there is a need to resolve hidden surfaces.
  • the prefiltering approach employs exact area calculations at each pixel that contains an edge. This sounds expensive but in actuality it has an efficient incremental solution. For a given pair of edges on a scanline, there can exist up to three areas of interest, the left edge, the middle or fully covered pixels, and the right edge. All pixels intersected by an edge must have their area calculated. If several adjacent pixels are intersected by a common edge, the area calculation for subsequent intersecting pixels can be computed incrementally. For an edge with a given slope, the difference of areas from one pixel to the next is constant. An approach based on this assumption is more appealing.
  • edge cases Two edge cases might be encountered.
  • the first case of an isolated edge is the most common. All engines will encounter this case. All of the edges from a Framing only, or Filling only edge engine fall into this category. A Filling and Framing edge engine will encounter this case on the exterior edge of the frame.
  • TSpanPainter's CompositeSpan method After a determination has been made of the edges opacity, pixels that are non opaque must be composited with the destination pixels through the TSpanPainter's CompositeSpan method. Interior opaque spans can be set through the TSpanPainter's PaintSpans, or PaintBlock methods.
  • the second case of two abutting edges filled with different paints is only encountered when filling and framing.
  • the interior seam between the frame and fill must be composited with care. No background color can contribute to the final value of pixels along this seam.
  • the engine must call one edge's TSpanPainter GetDesiredColorAt method, to determine the color that the painter desires at that pixel. Once in possession of this color, the edge engine must call the other TSpanPainter's SetAbuttingEdgeColor, and PaintAbuttingEdgePixel methods to get the correctly blended result.
  • the per pixel expense of the GetDesiredColorAt, and SetAbuttingEdgeColor method combination can be avoided if the TSpanPainter's IsShadingConstant method returns TRUE.
  • Figure 13 is an area primitive with the illustrated structure in accordance with a preferred embodiment.
  • the area consists of three different geometries, a rectangle, an ellipse and a polygon, each related by an operation.
  • the edge engine must have a method for determining the state of the current position within the geometry (inside or outside).
  • Figure 14 illustrates a method for determining the state of the current position in accordance with a preferred embodiment.
  • the edge engine When the edge engine encounters an edge, the edge notifies its parent node of the transition by passing the edge's sign to it. This sign is used by the node to determine the state (inside or outside) of the object to which the edge belongs. If the state changes, the node notifies its parent node. The cycle continues until no more changes occur, or until it reaches the root node.
  • This processing is a quick and effective method for maintaining the current state of the area as it is scan-converted.
  • the edge engine queries the root node for the current state of the area and produces scan line spans accordingly.
  • the monotonic-in-y edges must be identified. Horizontal edges can be discarded because they are of no consequence when scan converting in the y direction.
  • For each edge initialize an edge object of the appropriate type with the following values: x the x value at the top of the edge; y the y value at the top of the edge; final y the y value at the bottom of the edge; and sign +1 if the edge goes down, -1 if the edge goes up.
  • Figure 15 illustrates various edges in accordance with a preferred embodiment.
  • a rectangle is presented at 1500.
  • Two vertical edges are shown at 1510.
  • a rotated rectangle (polygon) is presented at 1520, four straight edges are set forth at 1530, an ellipse is shown at 1540, two ellipses appear at 1550, a closed curve loop at 1560, and four sampled edges at 1570.
  • Figure 16 illustrates scan conversion in the positive y direction in accordance with a preferred embodiment. The conversion is performed one scan line at a time which requires each edge to be monotonic in the y direction.
  • Figure 17 illustrates a straight edge example in accordance with a preferred embodiment.
  • the sign of this straight edge is +1.
  • the abstract base class for all edges has the following data structure: x (real) - current x value; y (integer) - current y value; final y (integer) - y value at the bottom of the edge; sign (integer) - +1 or -1, depending on the direction of the edge in y; step function - called to advance to the next scan line; and transition function - called when the edge is crossed during scan conversion.
  • edge class For all edges, the following subclasses are derived: straight edge, vertical edge, ellipse edge, and sampled edge.
  • Straight edge - an edge that is a straight line, comprising: x (real) - current x value; y (integer) - current y value; final y (integer) - y value at the bottom of the edge; sign (integer) - +1 or -1, depending on the direction of the edge in y; and step function - adds the slope of the line to the current x value.
  • Vertical edge - an edge that is a vertical line, comprising: x (real) - current x value; y (integer) - current y value; final y (integer) - y value at the bottom of the edge; sign (integer) - +1 or -1, depending on the direction of the edge in y; and step function - does nothing because the x value is a constant for a vertical line.
  • Ellipse edge - an edge that is a vertical line, comprising: x (real) - current x value; y (integer) - current y value; final y (integer) - y value at the bottom of the edge; sign (integer) - +1 or -1, depending on the direction of the edge in y; and step function - calculates the next x value on the elliptical border based on the bresenham ellipse algorithm.
  • Sampled edge - an edge that is a sequence of straight line segments, comprising: x (real) - current x value; y (integer) - current y value; final y (integer) - y value at the bottom of the edge; sign (integer) - +1 or -1, depending on the direction of the edge in y; and step function - calculates the next value by either adding the slope of the current line segment to the current x value or skipping to the next line segment if the current one ended.
  • FIG. 18 is a flowchart of the logic in accordance with a preferred embodiment. Processing commences at function block 1800 to generate edges from a given geometry, such as a rectangle, ellipse or polygon. Then, at function block 1810 the edges are sorted in ascending y as the primary sort field and ascending x as the secondary sort field.
  • a given geometry such as a rectangle, ellipse or polygon.
  • the current scan line is initialized to the y value of the first edge at function block 1820, the new edges are collected into the active edge list at function block 1830 (the active edge list is the list of edges that cross the current scan line), edges are removed from the active edge list if they no longer cross the current scan line in function block 1840, a step function is called for all active edges to detect if any edges are out of order in function block 1850 (an edge's step function calculates its next x value corresponding to the current scan line), and a test is performed at decision block 1860 to determine if it is necessary to sort edges in x. Sorting in x is necessary if new edges were added, old edges were removed, or edges have crossed. If sorting is necessary, then active edges are sorted in ascending x order in function block 1870 and control is passed to function block 1880. If sorting is not necessary, then control passes directly to function block 1880.
  • the active edge list is the list of edges that cross the current scan line
  • edges are removed from the active edge list if they
  • function block 1880 for each active edge, a test is performed to determine if crossing the edge will result in transitioning outside the geometry and drawing pixels on the current scan line.
  • the edge transition function can be used to generalize the mechanism by which inside /outside detection is done. Additional discussion of the logic is reserved for the discussion of Figures 19, 20 and 21 which set forth various embodiments of this processing.
  • decision block 1890 a test is performed to determine if all the edges have been processed. If so, then processing is completed at terminal 1891. If not, then the current scan line is incremented at function block 1892 and control is passed to function block 1830 for further processing consistent with the logic set forth above.
  • Winding Number Rule Figure 19 is a flowchart setting forth an embodiment of edge transition processing in accordance with the subject invention as set forth in function block 1880 of Figure 18.
  • Processing commences at function block 1900 where the edge's sign is added to the current wrap count, and a test is performed at decision block 1910 to determine if the wrap count has become zero. If so, then pixels are drawn on the current scan line from the saved x value to the edge's x value as shown in function block 1940. If not, then a test is performed at decision block 1920 to determine if the wrap count became non-zero. If the wrap count became non-zero, then the edge's x value is saved at function block 1930.
  • Even-Odd Rule Figure 20 is a flowchart setting forth an embodiment of edge transition processing in accordance with the subject invention as set forth in function block 1880 of Figure 18. Processing commences at function block 2000 where the edge's sign is added to the current wrap count, and a test is performed at decision block 2010 to determine if the current wrap count is even. If the edge count is even, then at function block 2030, pixels are drawn on the current scan line from the saved x value to the edge's x value. If the edge count is not even, then the edge's x value is saved at function block 2020.
  • Figure 21 is a block diagram setting forth an embodiment of edge transition processing in accordance with the subject invention. The block diagram uses a union of a rectangle and an ellipse to illuminate transition processing.
  • the resultant value is stored in the result block 2100.
  • the union object 2110 takes two even-odd values and calculates the logical union of the two values.
  • the even-odd objects 2120 track each geometry's inside or outside status using even-odd logic. When an edge is crossed, its transition function is called via the blocks set forth at 2130. The edges for the rectangle and the ellipse are set forth at 2140.

Abstract

A method and system for processing graphic objects on a computer with a memory and an attached display by loading the graphic object into a memory, converting the graphic object into a plurality of edge objects, converting the edge objects into a plurality of scan line pixels, and displaying the scan line pixels and the graphic object on the display.

Description

GRAPHIC EDGE SYSTEM
COPYRIGHT NOTIFICAΗON
Portions of this patent application contain materials that are subject to copyright protection. The copyright owner has no objection to the facsimile reproduction by anyone of the patent document or the patent disclosure, as it appears in the Patent and Trademark Office patent file or records, but otherwise reserves all copyright rights whatsoever.
Field of the Invention
This invention generally relates to improvements in computer systems and more particularly to a system and method for processing edge information on a graphic display.
Background of the Invention
Graphic processing of edge information is a critical problem for presenting information in an aesthetic, ergonomic manner. Thus, modern graphic systems, which utilize information-handling systems that are designed to process a wide variety of information, including text and graphic information, are becoming increasingly sophisticated so as to process this information in a more ergonomic manner. For example, the limited ability of a computer programmer or computer user to program or process graphic edge information in a selected way.
Prior software operating system architectures are limited in their edge processing capability. A limitation is that the operating system architecture may not be able to support a given peripheral device for which the architecture was not designed or could not be modified to support. Also, a prior architecture may only process graphic edge information in a single, pre-defined manner.
Summary of the Invention Accordingly, it is a primary objective of the present invention to process graphic objects, and their associated edges, on a computer with a memory and an attached display in a flexible manner. The objective is accomplished by loading the graphic object into a memory, converting the graphic object into a plurality of edge objects, converting the edge objects into a plurality of scan line pixels, and displaying the scan line pixels on the display.
Brief Description of the Drawings
Figure 1 is a block diagram of a personal computer system in accordance with a preferred embodiment; Figure 2 is an illustration of a pair of graphic edges in accordance with a preferred embodiment;
Figure 3 illustrates the sort order in accordance with a preferred embodiment;
Figure 4 is an illustration of a star-polygon, even-odd rule in accordance with a preferred embodiment;
Figure 5 is an illustration of a star polygon employing a winding number rule in accordance with a preferred embodiment;
Figure 6 illustrates a centered frame of a star polygon following a centered even-odd rule in accordance with a preferred embodiment;
Figure 7 illustrates a centered frame of a star polygon following a centered winding number rule in accordance with a preferred embodiment;
Figure 8 illustrates an inset frame of a star polygon following the inset even- odd rule in accordance with a preferred embodiment;
Figure 9 illustrates an inset frame of a star polygon following the winding number rule;
Figure 10 illustrates an outset frame of a star polygon following the outset even-odd rule in accordance with a preferred embodiment;
Figure 11 illustrates an outset frame of a star polygon following the outset winding number rule in accordance with a preferred embodiment;
Figure 12 illustrates the edge engines used by discrete devices in accordance with a preferred embodiment;
Figure 13 is an area primitive with the illustrated structure in accordance with a preferred embodiment;
Figure 14 illustrates a method for determining the state of the current position in accordance with a preferred embodiment;
Figure 15 illustrates various edges in accordance with a preferred embodiment; Figure 16 illustrates scan conversion in the positive y direction in accordance with a preferred embodiment;
Figure 17 illustrates a straight edge example in accordance with a preferred embodiment; Figure 18 is a flowchart of the logic in accordance with a preferred embodiment;
Figure 19 is a flowchart setting forth an embodiment of edge transition processing in accordance with the subject invention.
Figure 20 is a flowchart setting forth an embodiment of edge transition processing in accordance with the subject invention; and
Figure 21 is a block diagram setting forth an embodiment of edge transition processing in accordance with the subject invention.
Detailed Description Of The Invention
The invention is preferably practiced in the context of an operating system resident on a personal computer such as the IBM ® PS/2 ® or Apple ® Macintosh ® computer. A representative hardware environment is depicted in Figure 1, which illustrates a typical hardware configuration of a computer in accordance with the subject invention having a central processing unit 10, such as a conventional microprocessor, with a built in non-volatile storage 11, and a number of other units interconnected via a system bus 12. The workstation shown in Figure 1 includes a Random Access Memory (RAM) 14, Read Only Memory (ROM) 16, an I/O adapter 18 for connecting peripheral devices such as a disk unit 20, and a diskette unit 21 to the bus, a user interface adapter 22 for connecting a keyboard 24, a mouse 26, a speaker 28, a microphone 32, and /or other user interface devices such as a touch screen device (not shown) to the bus, a communication adapter 34 for connecting the workstation to a data processing network 23 and a display adapter 36 for connecting the bus to a display device 38. The computer has resident thereon an operating system such as the Apple System/7 ® operating system.
In a preferred embodiment, the invention is implemented in the C++ programming language using object oriented programming techniques. As will be understood by those skilled in the art, Object-Oriented Programming (OOP) objects are software entities comprising data structures and operations on the data. Together, these elements enable objects to model virtually any real-world entity in terms of its characteristics, represented by its data elements, and its behavior, represented by its data manipulation functions. In this way, objects can model concrete things like people and computers, and they can model abstract concepts like numbers or geometrical concepts. The benefits of object technology arise out of three basic principles: encapsulation, polymorphism and inheritance. Objects hide, or encapsulate, the internal structure of their data and the algorithms by which their functions work. Instead of exposing these implementation details, objects present interfaces that represent their abstractions cleanly with no extraneous information. Polymorphism takes encapsulation a step further. The idea is many shapes, one interface. A software component can make a request of another component without knowing exactly what that component is. The component that receives the request interprets it and figures out according to its variables and data, how to execute the request. The third principle is inheritance, which allows developers to reuse pre-existing design and code. This capability allows developers to avoid creating software from scratch. Rather, through inheritance, developers derive subclasses that inherit behaviors, which the developer then customizes to meet their particular needs.
A prior art approach is to layer objects and class libraries in a procedural environment. Many application frameworks on the market take this design approach. In this design, there are one or more object layers on top of a monolithic operating system. While this approach utilizes all the principles of encapsulation, polymorphism, and inheritance in the object layer, and is a substantial improvement over procedural programming techniques, there are limitations to this approach. These difficulties arise from the fact that while it is easy for a developer to reuse their own objects, it is difficult to use objects from other systems and the developer still needs to reach into the lower non-object layers with procedural Operating System (OS) calls.
Another aspect of object oriented programming is a framework approach to application development. One of the most rational definitions of frameworks come from Ralph E. Johnson of the University of Illinois and Vincent F. Russo of Purdue. In their 1991 paper, Reusing Object-Oriented Designs, University of Illinois tech report UIUCDCS91-1696 they offer the following definition: "An abstract class is a design of a set of objects that collaborate to carry out a set of responsibilities. Thus, a framework is a set of object classes that collaborate to execute defined sets of computing responsibilities." From a programming standpoint, frameworks are essentially groups of interconnected object classes that provide a pre-fabricated structure of a working application. For example, a user interface framework might provide the support and "default" behavior of drawing windows, scrollbars, menus, etc. Since frameworks are based on object technology, this behavior can be inherited and overridden to allow developers to extend the framework and create customized solutions in a particular area of expertise. This is a major advantage over traditional programming since the programmer is not changing the original code, but rather extending the software. In addition, developers are not blindly working through layers of code because the framework provides architectural guidance and modeling but at the same time frees them to then supply the specific actions unique to the problem domain.
From a business perspective, frameworks can be viewed as a way to encapsulate or embody expertise in a particular knowledge area. Corporate development organizations, Independent Software Vendors (ISV)s and systems integrators have acquired expertise in particular areas, such as manufacturing, accounting, or currency transactions as in our example earlier. This expertise is embodied in their code. Frameworks allow organizations to capture and package the common characteristics of that expertise by embodying it in the organization's code. First, this allows developers to create or extend an application that utilizes the expertise, thus the problem gets solved once and the business rules and design are enforced and used consistently. Also, frameworks and the embodied expertise behind the frameworks have a strategic asset implication for those organizations who have acquired expertise in vertical markets such as manufacturing, accounting, or bio-technology would have a distribution mechanism for packaging, reselling, and deploying their expertise, and furthering the progress and dissemination of technology.
Historically, frameworks have only recently emerged as a mainstream concept on personal computing platforms. This migration has been assisted by the availability of object-oriented languages, such as C++. Traditionally, C++ was found mostly on UNIX systems and researcher's workstations, rather than on
Personal Computers in commercial settings. It is languages such as C++ and other object-oriented languages, such as Smalltalk and others, that enabled a number of university and research projects to produce the precursors to today's commercial frameworks and class libraries. Some examples of these are Interviews from Stanford University, the Andrew toolkit from Carnegie-Mellon University and University of Zurich's ET++ framework.
There are many kinds of frameworks depending on the level of the system and the nature of the problem. The types of frameworks range from application frameworks that assist in developing the user interface, to lower level frameworks that provide basic system software services such as communications, printing, file systems support, graphics, etc. Commercial examples of application frameworks are MacApp (Apple), Bedrock (Symantec), OWL (Borland), NeXTStep App Kit (NeXT), and Smalltalk-80 MVC (ParcPlace) to name a few. Programming with frameworks requires a new way of thinking for developers accustomed to other kinds of systems. In fact, it is not like "programming" at all in the traditional sense. In old-style operating systems such as DOS or UNIX, the developer's own program provides all of the structure. The operating system provides services through system calls — the developer's program makes the calls when it needs the service and control returns when the service has been provided. The program structure is based on the flow-of-control, which is embodied in the code the developer writes.
When frameworks are used, this is reversed. The developer is no longer responsible for the flow-of-control. The developer must forego the tendency to understand programming tasks in term of flow of execution. Rather, the thinking must be in terms of the responsibilities of the objects, which must rely on the framework to determine when the tasks should execute. Routines written by the developer are activated by code the developer did not write and that the developer never even sees. This flip-flop in control flow can be a significant psychological barrier for developers experienced only in procedural programming. Once this is understood, however, framework programming requires much less work than other types of programming.
In the same way that an application framework provides the developer with prefab functionality, system frameworks, such as those included in a preferred embodiment, leverage the same concept by providing system level services, which developers, such as system programmers, use to subclass /override to create customized solutions. For example, consider a multi-media framework which could provide the foundation for supporting new and diverse devices such as audio, video, MIDI, animation, etc. The developer that needed to support a new kind of device would have to write a device driver. To do this with a framework, the developer only needs to supply the characteristics and behavior that is specific to that new device.
The developer in this case supplies an implementation for certain member functions that will be called by the multi-media framework. An immediate benefit to the developer is that the generic code needed for each category of device is already provided by the multi-media framework. This means less code for the device driver developer to write, test, and debug. Another example of using system framework would be to have separate I/O frameworks for SCSI devices, NuBus cards, and graphics devices. Because there is inherited functionality, each framework provides support for common functionality found in its device category. Other developers could then depend on these consistent interfaces to all kinds of devices. A preferred embodiment takes the concept of frameworks and applies it throughout the entire system. For the commercial or corporate developer, systems integrator, or OEM, this means all the advantages that have been illustrated for a framework such as MacApp can be leveraged not only at the application level for such things as text and user interfaces, but also at the system level, for services such as graphics, multi-media, file systems, I/O, testing, etc.
Application creation in the architecture of a preferred embodiment will essentially be like writing domain-specific puzzle pieces that adhere to the framework protocol. In this manner, the whole concept of programming changes. Instead of writing line after line of code that calls multiple API hierarchies, software will be developed by deriving classes from the preexisting frameworks within this environment, and then adding new behavior and/or overriding inherited behavior as desired.
Thus, the developer's application becomes the collection of code that is written and shared with all the other framework applications. This is a powerful concept because developers will be able to build on each other's work. This also provides the developer the flexibility to customize as much or as little as needed. Some frameworks will be used just as they are. In some cases, the amount of customization will be minimal, so the puzzle piece the developer plugs in will be small. In other cases, the developer may make very extensive modifications and create something completely new. In a preferred embodiment, as shown in Figure 1, a program resident in the RAM 14, and under the control of the CPU 10, is responsible for managing various tasks using an object oriented graphic framework.
A preferred embodiment employs an edge engine of a rendering pipeline to manipulate a list of TGrafEdges. It is used only by discrete devices. For example, in the TFrameBuffer device, the edge engine generates scanline spans from the edges representing filled and framed portions of a primitive. This process is known as scan conversion.
A TGrafEdge is a polymorphic scan conversion primitive. An illustration of a pair of graphic edges is presented in Figure 2. Each graphic edge 230, 240 has a minimum Y value 210, a starting X value 200, a height 220, and a virtual Step method. The Step method updates the X value for the next scanline (the next integer Y value). A TGrafEdge can thus describe any curve that is monotonic in Y; i.e., it has a single X value for every scan line it spans. TGrafEdge also has a reference to a single CAG node object, which is used to determine whether a point is inside or outside the entire geometry.
A simple primitive is easy to render; it has a single wrap count that determines whether a point is inside or outside the geometry. The TGArea primitive, on the other hand, can be arbitrarily complex. Each sub-primitive has its own independent wrap count. The wrap counts of all the sub-primitives can be used to calculate the state of the entire primitive. The structure for doing inside /outside calculations is set up by the TGArea and passed to the edge engine. However, the overhead associated with the more complex inside /outside calculations should be incurred only for the TGArea primitive. Subclasses of the edge engines will provide anti-aliasing scan conversion, and can be made for accelerated edges, such as rectilinear edges.
Pixel perfection is important for edge engines, since edge engines perform scan-conversion to discrete device units. Pixel perfection defines which pixels are modified, given a set of edges that define an area in device space. Even though the word "pixel" is used, pixel perfection can be useful for other discrete devices, since it defines where the discrete units lie on the device's coordinate system.
Scan conversion is the process of converting a geometry into horizontal scan line spans, which can then be drawn on a discrete graphic device. A geometry can be filled, framed, or both. The algorithm to draw a geometry that is filled and /or framed ensures that no area is drawn twice, allowing transfer modes and transparency to function correctly. An edge engine fills a geometry that is defined by list of TGrafEdges representing its outline. A user can specify the outline of a geometry by tracing its perimeter in an arbitrary direction. This determines the sign of each edge in the list. The sign of an edge is positive if it points in the direction of positive y. Edges that have no effect on the output are discarded.
Figure 3 illustrates the sort order in accordance with a preferred embodiment. Edges are sorted first by their smaller y values, and then by their x values within a particular y value. For each scan line that intersects the edges, one or more spans in x are generated. This is accomplished by always keeping an "active" list of edges; that is, the edges that cross the current scan line. For each scan line, the active edge list is found. Then, as an edge is crossed, one of the following rules is applied to generate the appropriate spans for the scan line: the even-odd rule or the winding number rule.
Even-odd rule: Each time an edge is encountered, a span is either started or ended. Figure 4 is an illustration of the generated star span for each pair of edges in accordance with a preferred embodiment.
Winding number rule: As an edge is crossed, its sign is added to a winding number initially set to zero. When the winding number becomes non-zero, a span is started. When the winding number becomes zero, the span is ended. This produces the effect of filling all the area within the outer boundary of the polygon. Figure 5 is an illustration of a star polygon employing the winding number rule in accordance with a preferred embodiment.
The rule that is applied depends on the primitive being rendered. For example, the TGPolygon primitive, which defines a polygon graphic object, contains a parameter that specifies which rule to use. The TGEllipse primitive, on the other hand, may use either rule because both rules produce the same result when applied to a non-self-intersecting geometry. Two types of frames can be drawn around an object, depending on the intended purpose of the frame: the hairline frame and the thick frame. Both are discussed below.
The thick frame can be of any thickness. End caps, joint styles, and dashing can be applied as desired. The edge engine scan converts the thick frame and the fill at the same time. The TGrafEdges that represent both sides of the frame (left and right) are generated and inserted into the list with the fill edges. The direction, and thus the sign, of a frame edge is the same as that of the fill edge from which it was created. As the primitive is scan-converted, two winding numbers are kept: one for the left frame edges and one for the right frame edges. The spans generated for the frame depend on which fill rule is used:
Even-odd rule: As a frame edge is encountered, its sign is added to the appropriate winding number (left or right). When the two winding numbers become unequal, a span is started. When they become equal again, the span is ended.
Winding number rule: As a frame edge is encountered, its sign is added to the appropriate winding number (left or right). When the signs of the two winding numbers become unequal, a span is started. When the signs become equal again, the span is ended.
Depending on which pen balance is used, the frame may overlap the filled area. However, since the filled area and the frame are drawn together, no part of the area is drawn twice.
For a centered pen, the thickness of the frame is centered around the outline of the filled area. This is accomplished by allowing the spans generated for the frame to supersede those generated for the fill.
Figure 6 illustrates a centered frame of a star polygon following a centered even-odd rule in accordance with a preferred embodiment, and Figure 7 illustrates a centered frame of a star polygon following a centered winding number rule in accordance with a preferred embodiment. For an inset pen, the thickness of the frame is completely within the outline of the filled area. The spans generated for the frame supersede those generated for the fill, but they are drawn only when there are fill spans generated. In other words, the frame is clipped to the fill geometry. This is the opposite of the outset frame. Figure 8 illustrates an inset frame of the star polygon following the inset even-odd rule in accordance with a preferred embodiment. Figure 9 illustrates an inset frame of the star polygon following the winding number rule.
For an outset pen, the thickness of the frame is completely outside the outline of the filled area. The spans generated for the frame are drawn only when there are no fill spans to draw. In other words, the frame is never drawn inside the fill geometry. This is the opposite of the inset frame. Figure 10 illustrates an outset frame of the star polygon following the outset even-odd rule in accordance with a preferred embodiment. Figure 11 illustrates an outset frame of the star polygon following the outset winding number rule in accordance with a preferred embodiment.
Edge Engine Aliasing Subclasses
Figure 12 illustrates the edge engines used by discrete devices. The anti- aliased edge engines are not shown. TEdgeEngine is an abstract class from which all the edge engines are derived. It contains a pure virtual function that accepts TGrafEdges. It also contains a pure virtual Render function. TFillEdgeEngine performs aliased filling of the geometry described by the list of TGrafEdges. The edges can be of any type.
TRectilinearFillEdgeEngine performs aliased filling of the geometry described by the list of rectilinear TGrafEdges. It is an optimization of the TFillEdgeEngine. It assumes that each TGrafEdge is a vertical line. TFillAndFrameEdgeEngine performs aliased filling and framing of the geometry described by the list of TGrafEdges. The edges can be of any type.
TRectilinearFillAndFrameEdgeEngine performs aliased filling and framing of the geometry described by the list of rectilinear TGrafEdges. It is an optimization of the TFillEdgeEngine. It assumes that each TGrafEdge is a vertical line.
Edge Engine Antialiasing Subclasses
Another reason to subclass an edge engine is to accommodate antialiasing. Efficient implementations share a common optimization to convolve only the areas around the edges with the filter kernel. This optimization not only dodges a great deal of filtering operations in the interior of the shape, but it also allows for the use of simple non compositing TSpanPainter methods to be used such as PaintSpans. An antialiasing edge engine might take two approaches to convolving the edges.
The super sampling approach scan converts at a higher resolution, rendering into subpixel bitmaps which represent detail at a subpixel level. Alternatively, the subpixel scan conversion can be precalculated into a table which is indexed via some number of significant bits from the fractional component of the edges entry and exit coordinates. These bitmaps are typically 4x8 pixels. If a box filter is being used, all that is required is a population tally of the bitmaps bits. If a higher quality filter, which has a support size greater than .5, is used, then each outputted pixel's transparency is determined from the weighted average of itself and neighboring bitmaps.
The higher quality filter imposes one additional problem. Scan lines cannot be output until all of their contributing subpixel bitmasks have been convolved with the filter kernel and summed. This means that the edge engine will be outputting spans one to two scanlines behind their scan conversion. These approaches are typically taken when the vertices are integers or there is a need to resolve hidden surfaces. The prefiltering approach employs exact area calculations at each pixel that contains an edge. This sounds expensive but in actuality it has an efficient incremental solution. For a given pair of edges on a scanline, there can exist up to three areas of interest, the left edge, the middle or fully covered pixels, and the right edge. All pixels intersected by an edge must have their area calculated. If several adjacent pixels are intersected by a common edge, the area calculation for subsequent intersecting pixels can be computed incrementally. For an edge with a given slope, the difference of areas from one pixel to the next is constant. An approach based on this assumption is more appealing.
Whichever algorithm is employed, two edge cases might be encountered. The first case of an isolated edge is the most common. All engines will encounter this case. All of the edges from a Framing only, or Filling only edge engine fall into this category. A Filling and Framing edge engine will encounter this case on the exterior edge of the frame. After a determination has been made of the edges opacity, pixels that are non opaque must be composited with the destination pixels through the TSpanPainter's CompositeSpan method. Interior opaque spans can be set through the TSpanPainter's PaintSpans, or PaintBlock methods.
The second case of two abutting edges filled with different paints is only encountered when filling and framing. The interior seam between the frame and fill must be composited with care. No background color can contribute to the final value of pixels along this seam. The engine must call one edge's TSpanPainter GetDesiredColorAt method, to determine the color that the painter desires at that pixel. Once in possession of this color, the edge engine must call the other TSpanPainter's SetAbuttingEdgeColor, and PaintAbuttingEdgePixel methods to get the correctly blended result. The per pixel expense of the GetDesiredColorAt, and SetAbuttingEdgeColor method combination can be avoided if the TSpanPainter's IsShadingConstant method returns TRUE.
CAG Objects
An example of CAG objects and their use in the process of scan conversion is presented below. Figure 13 is an area primitive with the illustrated structure in accordance with a preferred embodiment. The area consists of three different geometries, a rectangle, an ellipse and a polygon, each related by an operation. As scan-conversion is performed, the edge engine must have a method for determining the state of the current position within the geometry (inside or outside). Figure 14 illustrates a method for determining the state of the current position in accordance with a preferred embodiment. There are eight edges that describe the area: two for the rectangle, two for the ellipse, and four for the polygon. They each point to their "parent," which is a TCAGNode object that is notified when the state of the edge changes. When the edge engine encounters an edge, the edge notifies its parent node of the transition by passing the edge's sign to it. This sign is used by the node to determine the state (inside or outside) of the object to which the edge belongs. If the state changes, the node notifies its parent node. The cycle continues until no more changes occur, or until it reaches the root node. This processing is a quick and effective method for maintaining the current state of the area as it is scan-converted. The edge engine queries the root node for the current state of the area and produces scan line spans accordingly.
To generate edges from geometries, the following steps are employed. First, the monotonic-in-y edges must be identified. Horizontal edges can be discarded because they are of no consequence when scan converting in the y direction. For each edge, initialize an edge object of the appropriate type with the following values: x the x value at the top of the edge; y the y value at the top of the edge; final y the y value at the bottom of the edge; and sign +1 if the edge goes down, -1 if the edge goes up.
Figure 15 illustrates various edges in accordance with a preferred embodiment. A rectangle is presented at 1500. Two vertical edges are shown at 1510. A rotated rectangle (polygon) is presented at 1520, four straight edges are set forth at 1530, an ellipse is shown at 1540, two ellipses appear at 1550, a closed curve loop at 1560, and four sampled edges at 1570.
Figure 16 illustrates scan conversion in the positive y direction in accordance with a preferred embodiment. The conversion is performed one scan line at a time which requires each edge to be monotonic in the y direction.
Figure 17 illustrates a straight edge example in accordance with a preferred embodiment. The vector is a step function; f(x) = y + slope; where slope =.5. The sign of this straight edge is +1. The abstract base class for all edges has the following data structure: x (real) - current x value; y (integer) - current y value; final y (integer) - y value at the bottom of the edge; sign (integer) - +1 or -1, depending on the direction of the edge in y; step function - called to advance to the next scan line; and transition function - called when the edge is crossed during scan conversion.
From the abstract base edge class for all edges, the following subclasses are derived: straight edge, vertical edge, ellipse edge, and sampled edge.
Straight edge - an edge that is a straight line, comprising: x (real) - current x value; y (integer) - current y value; final y (integer) - y value at the bottom of the edge; sign (integer) - +1 or -1, depending on the direction of the edge in y; and step function - adds the slope of the line to the current x value. Vertical edge - an edge that is a vertical line, comprising: x (real) - current x value; y (integer) - current y value; final y (integer) - y value at the bottom of the edge; sign (integer) - +1 or -1, depending on the direction of the edge in y; and step function - does nothing because the x value is a constant for a vertical line.
Ellipse edge - an edge that is a vertical line, comprising: x (real) - current x value; y (integer) - current y value; final y (integer) - y value at the bottom of the edge; sign (integer) - +1 or -1, depending on the direction of the edge in y; and step function - calculates the next x value on the elliptical border based on the bresenham ellipse algorithm.
Sampled edge - an edge that is a sequence of straight line segments, comprising: x (real) - current x value; y (integer) - current y value; final y (integer) - y value at the bottom of the edge; sign (integer) - +1 or -1, depending on the direction of the edge in y; and step function - calculates the next value by either adding the slope of the current line segment to the current x value or skipping to the next line segment if the current one ended.
Figure 18 is a flowchart of the logic in accordance with a preferred embodiment. Processing commences at function block 1800 to generate edges from a given geometry, such as a rectangle, ellipse or polygon. Then, at function block 1810 the edges are sorted in ascending y as the primary sort field and ascending x as the secondary sort field. Next, the current scan line is initialized to the y value of the first edge at function block 1820, the new edges are collected into the active edge list at function block 1830 (the active edge list is the list of edges that cross the current scan line), edges are removed from the active edge list if they no longer cross the current scan line in function block 1840, a step function is called for all active edges to detect if any edges are out of order in function block 1850 (an edge's step function calculates its next x value corresponding to the current scan line), and a test is performed at decision block 1860 to determine if it is necessary to sort edges in x. Sorting in x is necessary if new edges were added, old edges were removed, or edges have crossed. If sorting is necessary, then active edges are sorted in ascending x order in function block 1870 and control is passed to function block 1880. If sorting is not necessary, then control passes directly to function block 1880.
In function block 1880, for each active edge, a test is performed to determine if crossing the edge will result in transitioning outside the geometry and drawing pixels on the current scan line. The edge transition function can be used to generalize the mechanism by which inside /outside detection is done. Additional discussion of the logic is reserved for the discussion of Figures 19, 20 and 21 which set forth various embodiments of this processing. Then, at decision block 1890, a test is performed to determine if all the edges have been processed. If so, then processing is completed at terminal 1891. If not, then the current scan line is incremented at function block 1892 and control is passed to function block 1830 for further processing consistent with the logic set forth above.
Winding Number Rule Figure 19 is a flowchart setting forth an embodiment of edge transition processing in accordance with the subject invention as set forth in function block 1880 of Figure 18. Processing commences at function block 1900 where the edge's sign is added to the current wrap count, and a test is performed at decision block 1910 to determine if the wrap count has become zero. If so, then pixels are drawn on the current scan line from the saved x value to the edge's x value as shown in function block 1940. If not, then a test is performed at decision block 1920 to determine if the wrap count became non-zero. If the wrap count became non-zero, then the edge's x value is saved at function block 1930.
Even-Odd Rule Figure 20 is a flowchart setting forth an embodiment of edge transition processing in accordance with the subject invention as set forth in function block 1880 of Figure 18. Processing commences at function block 2000 where the edge's sign is added to the current wrap count, and a test is performed at decision block 2010 to determine if the current wrap count is even. If the edge count is even, then at function block 2030, pixels are drawn on the current scan line from the saved x value to the edge's x value. If the edge count is not even, then the edge's x value is saved at function block 2020. Figure 21 is a block diagram setting forth an embodiment of edge transition processing in accordance with the subject invention. The block diagram uses a union of a rectangle and an ellipse to illuminate transition processing. The resultant value is stored in the result block 2100. The union object 2110 takes two even-odd values and calculates the logical union of the two values. The even-odd objects 2120 track each geometry's inside or outside status using even-odd logic. When an edge is crossed, its transition function is called via the blocks set forth at 2130. The edges for the rectangle and the ellipse are set forth at 2140.

Claims

CLAIMSHaving thus described our invention, what we claim as new, and desire to secure by Letters Patent is:
1. A method for processing graphic objects on a computer with a memory and an attached display, comprising the steps of: (a) loading a graphic object into the memory; (b) converting the graphic object into a plurality of edge objects; (c) converting the edge objects into a plurality of scan line pixels; and (d) displaying the scan line pixels and the graphic object on the display.
2. A method as recited in claim 1, including the step of representing the edge objects polymorphically.
3. A method as recited in claim 2, including the step of representing the edge objects in an extensible manner.
4. A method as recited in claim 1, including the step of determining whether the scan line pixels are inside or outside the graphic object in an extensible manner.
5. A method as recited in claim 4, including the step of processing the edge objects utilizing even-odd processing.
6. A method as recited in claim 4, including the step of processing the edge objects utilizing winding-number processing.
7. A method as recited in claim 4, including the step of processing edges from any geometric object.
8. A method as recited in claim 1, including the step of utilizing object oriented processing for the edge processing.
9. An apparatus for processing graphic objects, comprising: (a) a computer; (b) a memory resident in the computer; (c) a display attached to the computer; (d) means for loading a graphic object into the memory; (e) means for converting the graphic object into a plurality of edge objects; (f) means for converting the edge objects into a plurality of scan line pixels; and (g) means for displaying the scan line pixels and the graphic object on the display.
10. An apparatus as recited in claim 9, including means for representing the edge objects polymorphically.
11. An apparatus as recited in claim 10, including means for representing the edge objects in an extensible manner.
12. An apparatus as recited in claim 9, including means for determining whether the scan line pixels are inside or outside the graphic object in an extensible manner.
13. An apparatus as recited in claim 12, including means for processing the edge objects utilizing even-odd processing .
14. An apparatus as recited in claim 12, including means for processing the edge objects utilizing winding-number processing .
15. An apparatus as recited in claim 12, including means for processing edges from any geometric object.
16. An apparatus as recited in claim 9, including means for utilizing object oriented processing for the edge processing.
17. A method as recited in claim 1, including the step of converting the edge objects into pixels in an extensible manner.
18. A method as recited in claim 1, including the step of converting the edge objects from top to bottom utilizing clipping algorithms.
19. An apparatus as recited in claim 1, including means for converting the edge objects into pixels in an extensible manner.
20. An apparatus as recited in claim 1, including means for converting the edge objects from top to bottom utilizing clipping algorithms.
21. A method for processing graphic objects on a computer with a memory and an attached display, comprising the steps of: (a) loading a graphic object into the memory; (b) converting the graphic object into a plurality of edge objects; (c) converting the edge objects into a plurality of scan line pixels; (d) antialiasing the scan line pixels; and (e) displaying the scan line pixels and the graphic object on the display.
PCT/US1994/000013 1993-06-30 1994-01-03 Graphic edge system WO1995001615A1 (en)

Priority Applications (4)

Application Number Priority Date Filing Date Title
DE69410458T DE69410458D1 (en) 1993-06-30 1994-01-03 GRAPHIC EDGE SYSTEM
AU60817/94A AU6081794A (en) 1993-06-30 1994-01-03 Graphic edge system
JP50345695A JP3392870B2 (en) 1993-06-30 1994-01-03 Graphic edge system
EP94907132A EP0691012B1 (en) 1993-06-30 1994-01-03 Graphic edge system

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US08/085,340 US5471568A (en) 1993-06-30 1993-06-30 Object-oriented apparatus and method for scan line conversion of graphic edges
US08/085,340 1993-06-30

Publications (1)

Publication Number Publication Date
WO1995001615A1 true WO1995001615A1 (en) 1995-01-12

Family

ID=22190953

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/US1994/000013 WO1995001615A1 (en) 1993-06-30 1994-01-03 Graphic edge system

Country Status (8)

Country Link
US (1) US5471568A (en)
EP (1) EP0691012B1 (en)
JP (1) JP3392870B2 (en)
CN (1) CN1113666A (en)
AU (1) AU6081794A (en)
CA (1) CA2144870A1 (en)
DE (1) DE69410458D1 (en)
WO (1) WO1995001615A1 (en)

Families Citing this family (46)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5379432A (en) 1993-07-19 1995-01-03 Taligent, Inc. Object-oriented interface for a procedural operating system
US6684261B1 (en) 1993-07-19 2004-01-27 Object Technology Licensing Corporation Object-oriented operating system
WO1995004330A1 (en) * 1993-07-27 1995-02-09 Taligent, Inc. Object-oriented rendering system
JP3483946B2 (en) * 1994-08-19 2004-01-06 三菱電機株式会社 Font processing apparatus and font processing method
US5666475A (en) * 1995-01-03 1997-09-09 University Of Washington Method and system for editing multiresolution images at fractional-levels of resolution using a wavelet representation
US5657436A (en) * 1995-06-08 1997-08-12 Hewlett-Packard Company Preprocessing apparatus and method for line scan conversion in a computer graphics system
JP3785700B2 (en) * 1995-12-18 2006-06-14 ソニー株式会社 Approximation method and apparatus
US5987245A (en) 1996-07-01 1999-11-16 Sun Microsystems, Inc. Object-oriented system, method and article of manufacture (#12) for a client-server state machine framework
US6424991B1 (en) 1996-07-01 2002-07-23 Sun Microsystems, Inc. Object-oriented system, method and article of manufacture for a client-server communication framework
US5848246A (en) 1996-07-01 1998-12-08 Sun Microsystems, Inc. Object-oriented system, method and article of manufacture for a client-server session manager in an interprise computing framework system
US6038590A (en) 1996-07-01 2000-03-14 Sun Microsystems, Inc. Object-oriented system, method and article of manufacture for a client-server state machine in an interprise computing framework system
US6304893B1 (en) 1996-07-01 2001-10-16 Sun Microsystems, Inc. Object-oriented system, method and article of manufacture for a client-server event driven message framework in an interprise computing framework system
US6434598B1 (en) 1996-07-01 2002-08-13 Sun Microsystems, Inc. Object-oriented system, method and article of manufacture for a client-server graphical user interface (#9) framework in an interprise computing framework system
US6272555B1 (en) 1996-07-01 2001-08-07 Sun Microsystems, Inc. Object-oriented system, method and article of manufacture for a client-server-centric interprise computing framework system
US5999972A (en) 1996-07-01 1999-12-07 Sun Microsystems, Inc. System, method and article of manufacture for a distributed computer system framework
US6266709B1 (en) 1996-07-01 2001-07-24 Sun Microsystems, Inc. Object-oriented system, method and article of manufacture for a client-server failure reporting process
US6407736B1 (en) 1999-06-18 2002-06-18 Interval Research Corporation Deferred scanline conversion architecture
US7458014B1 (en) 1999-12-07 2008-11-25 Microsoft Corporation Computer user interface architecture wherein both content and user interface are composed of documents with links
US9424240B2 (en) 1999-12-07 2016-08-23 Microsoft Technology Licensing, Llc Annotations for electronic content
US6820111B1 (en) 1999-12-07 2004-11-16 Microsoft Corporation Computer user interface architecture that saves a user's non-linear navigation history and intelligently maintains that history
US7337389B1 (en) 1999-12-07 2008-02-26 Microsoft Corporation System and method for annotating an electronic document independently of its content
US7028267B1 (en) 1999-12-07 2006-04-11 Microsoft Corporation Method and apparatus for capturing and rendering text annotations for non-modifiable electronic content
US6714214B1 (en) * 1999-12-07 2004-03-30 Microsoft Corporation System method and user interface for active reading of electronic content
US6957233B1 (en) 1999-12-07 2005-10-18 Microsoft Corporation Method and apparatus for capturing and rendering annotations for non-modifiable electronic content
US6992687B1 (en) 1999-12-07 2006-01-31 Microsoft Corporation Bookmarking and placemarking a displayed document in a computer system
US7185274B1 (en) 1999-12-07 2007-02-27 Microsoft Corporation Computer user interface architecture wherein users interact with both content and user interface by activating links
AU765466B2 (en) * 1999-12-22 2003-09-18 Canon Kabushiki Kaisha Anti-aliased polygon rendering
AU767108B2 (en) * 2000-03-08 2003-10-30 Canon Kabushiki Kaisha Edge merging via lookup table
AUPQ697100A0 (en) * 2000-04-18 2000-05-11 Canon Kabushiki Kaisha Rendering graphic object based images
US7243299B1 (en) 2000-04-21 2007-07-10 Microsoft Corporation Methods and apparatus for displaying multiple contexts in electronic documents
AU769956B2 (en) * 2000-05-03 2004-02-12 Canon Kabushiki Kaisha Conversion of vectorized paths into a renderable format
US6766281B1 (en) * 2000-05-12 2004-07-20 S3 Graphics Co., Ltd. Matched texture filter design for rendering multi-rate data samples
US6828983B1 (en) * 2000-05-12 2004-12-07 S3 Graphics Co., Ltd. Selective super-sampling/adaptive anti-aliasing of complex 3D data
US6760019B1 (en) 2000-06-01 2004-07-06 Sun Microsystems, Inc. Methods and apparatus for facilitating the sharing of computer graphics operations
US7234108B1 (en) * 2000-06-29 2007-06-19 Microsoft Corporation Ink thickness rendering for electronic annotations
US7126600B1 (en) * 2000-08-01 2006-10-24 Ati International Srl Method and apparatus for high speed block mode triangle rendering
AU771813B2 (en) * 2001-04-19 2004-04-01 Canon Kabushiki Kaisha Converting path with non-zero winding fill rule or odd-even winding fill rule to a simple outline path
JP4164272B2 (en) * 2001-04-24 2008-10-15 キヤノン株式会社 Image processing apparatus and image processing method
AUPR860901A0 (en) * 2001-10-31 2001-11-29 Canon Kabushiki Kaisha Activating a filling of a graphical object
AUPR970501A0 (en) * 2001-12-21 2002-01-24 Canon Kabushiki Kaisha A method for performing set operations on two or more arbitrary paths to produce a simple outline path
AU2002318793B2 (en) * 2001-12-21 2005-02-17 Canon Kabushiki Kaisha A Method for Performing Set Operations on Two or More Arbitrary Paths to Produce a Simple Outline Path
US20040174364A1 (en) * 2003-03-03 2004-09-09 Shehane Patrick D. Rendering patterned lines in a graphics system
US7864179B1 (en) * 2007-04-13 2011-01-04 Adobe Systems Incorporated Fractional parametric polystar methods and apparatus
CN101685544B (en) * 2008-09-28 2011-11-23 北大方正集团有限公司 Method and device of simplifying complicated path
JP5744574B2 (en) * 2011-03-07 2015-07-08 キヤノン株式会社 Image processing apparatus, image processing method, and program
EP2701090A1 (en) * 2012-08-22 2014-02-26 Aahlstö OÜ Method and system for enforcing 3D restricted rights in a rapid manufacturing and prototyping environment

Family Cites Families (18)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CA1184305A (en) * 1980-12-08 1985-03-19 Russell J. Campbell Error correcting code decoder
US4704694A (en) * 1985-12-16 1987-11-03 Automation Intelligence, Inc. Learned part system
US4821220A (en) * 1986-07-25 1989-04-11 Tektronix, Inc. System for animating program operation and displaying time-based relationships
US4885717A (en) * 1986-09-25 1989-12-05 Tektronix, Inc. System for graphically representing operation of object-oriented programs
US5063375A (en) * 1987-07-27 1991-11-05 Sun Microsystems, Inc. Method and apparatus for shading images
US4891630A (en) * 1988-04-22 1990-01-02 Friedman Mark B Computer vision system with improved object orientation technique
EP0347162A3 (en) * 1988-06-14 1990-09-12 Tektronix, Inc. Apparatus and methods for controlling data flow processes by generated instruction sequences
US5041992A (en) * 1988-10-24 1991-08-20 University Of Pittsburgh Interactive method of developing software interfaces
US5133075A (en) * 1988-12-19 1992-07-21 Hewlett-Packard Company Method of monitoring changes in attribute values of object in an object-oriented database
US5050090A (en) * 1989-03-30 1991-09-17 R. J. Reynolds Tobacco Company Object placement method and apparatus
DE3916314A1 (en) * 1989-05-19 1990-11-22 Ford Werke Ag METHOD AND DEVICE FOR DETERMINING THE REQUIRED EMPLOYMENT OF ROLLER BEARINGS IN GEARBOXES
US5060276A (en) * 1989-05-31 1991-10-22 At&T Bell Laboratories Technique for object orientation detection using a feed-forward neural network
US5125091A (en) * 1989-06-08 1992-06-23 Hazox Corporation Object oriented control of real-time processing
US5181162A (en) * 1989-12-06 1993-01-19 Eastman Kodak Company Document management and production system
US5093914A (en) * 1989-12-15 1992-03-03 At&T Bell Laboratories Method of controlling the execution of object-oriented programs
US5075848A (en) * 1989-12-22 1991-12-24 Intel Corporation Object lifetime control in an object-oriented memory protection mechanism
US5151987A (en) * 1990-10-23 1992-09-29 International Business Machines Corporation Recovery objects in an object oriented computing environment
US5119475A (en) * 1991-03-13 1992-06-02 Schlumberger Technology Corporation Object-oriented framework for menu definition

Non-Patent Citations (5)

* Cited by examiner, † Cited by third party
Title
DRAKE: "OBJECTS AND IMAGES", COMPUTER SYSTEMS, vol. 10, no. 1, January 1990 (1990-01-01), BROMLEY GB, pages 31 - 32, XP000087488 *
FIUME: "ACTIVE OBJECTS IN THE CONSTRUCTION OF GRAPHICAL USER INTERFACES", COMPUTERS AND GRAPHICS., vol. 13, no. 3, 1989, OXFORD GB, pages 321 - 327, XP000142335 *
GOODMAN E.A.: "KNOWLEDGE-BASED COMPUTER VISION", COMPUTER, vol. 22, no. 12, December 1989 (1989-12-01), LONG BEACH US, pages 43 - 54, XP000086458 *
SALESIN AND BARZEL: "ADJUSTABLE TOOLS: AN OBJECT-ORIENTED INTERACTION METAPHOR", ACM TRANSACTIONS ON GRAPHICS, vol. 12, no. 1, January 1993 (1993-01-01), NEW YORK U.S., pages 103 - 107, XP000345446 *
SCHROEDER: "VISAGE: AN OBJECT-ORIENTED SCIENTIFIC VISUALIZATION SYSTEM", PROCEEDINGS VISUALIZATION '92, 19 October 1992 (1992-10-19), LOS ALAMITOS, pages 219 - 226, XP000358053 *

Also Published As

Publication number Publication date
US5471568A (en) 1995-11-28
EP0691012B1 (en) 1998-05-20
JP3392870B2 (en) 2003-03-31
EP0691012A1 (en) 1996-01-10
AU6081794A (en) 1995-01-24
DE69410458D1 (en) 1998-06-25
CA2144870A1 (en) 1995-01-12
CN1113666A (en) 1995-12-20
JPH08512156A (en) 1996-12-17

Similar Documents

Publication Publication Date Title
US5471568A (en) Object-oriented apparatus and method for scan line conversion of graphic edges
US5428744A (en) Object-oriented system for building a graphic image on a display
EP0713594B1 (en) Object-oriented rendering system
EP1462998B1 (en) Markup language and object model for vector graphics
US7126606B2 (en) Visual and scene graph interfaces
US7466315B2 (en) Visual and scene graph interfaces
JP4796500B2 (en) Markup language and object model for vector graphics
EP0727076B1 (en) Object-oriented graphic system and method
Elliott Functional images
AU2004279179B8 (en) Visual and scene graph interfaces

Legal Events

Date Code Title Description
AK Designated states

Kind code of ref document: A1

Designated state(s): AT AU BB BG BR BY CA CH CN CZ DE DK ES FI GB HU JP KP KR KZ LK LU LV MG MN MW NL NO NZ PL PT RO RU SD SE SK UA UZ VN

AL Designated countries for regional patents

Kind code of ref document: A1

Designated state(s): AT BE CH DE DK ES FR GB GR IE IT LU MC NL PT SE BF BJ CF CG CI CM GA GN ML MR NE SN TD TG

DFPE Request for preliminary examination filed prior to expiration of 19th month from priority date (pct application filed before 20040101)
WWE Wipo information: entry into national phase

Ref document number: 2144870

Country of ref document: CA

121 Ep: the epo has been informed by wipo that ep was designated in this application
WWE Wipo information: entry into national phase

Ref document number: 1994907132

Country of ref document: EP

WWP Wipo information: published in national office

Ref document number: 1994907132

Country of ref document: EP

REG Reference to national code

Ref country code: DE

Ref legal event code: 8642

WWG Wipo information: grant in national office

Ref document number: 1994907132

Country of ref document: EP