Museum

Home

Lab Overview

Retrotechnology Articles

Online Manuals

⇒ (2) — Plan9 4th Edition

Media Vault

Software Library

Restoration Projects

Artifacts Sought

Related Articles

graphics(2)

ADDPT(2)

NAME

addpt, subpt, mulpt, divpt, rectaddpt, rectsubpt, insetrect, canonrect, eqpt, eqrect, ptinrect, rectinrect, rectXrect, rectclip, combinerect, Dx, Dy, Pt, Rect, Rpt − arithmetic on points and rectangles

SYNOPSIS

­#include <u.h>
­#include <libc.h>
­#include <draw.h>

Pointaddpt(Point p, Point q)

Pointsubpt(Point p, Point q)

Pointmulpt(Point p, int a)

Pointdivpt(Point p, int a)

Rectanglerectaddpt(Rectangle r, Point p)

Rectanglerectsubpt(Rectangle r, Point p)

Rectangleinsetrect(Rectangle r, int n)

Rectanglecanonrect(Rectangle r)

inteqpt(Point p, Point q)

inteqrect(Rectangle r, Rectangle s)

intptinrect(Point p, Rectangle r)

intrectinrect(Rectangle r, Rectangle s)

intrectXrect(Rectangle r, Rectangle s)

intrectclip(Rectangle ∗rp, Rectangle b)

voidcombinerect(Rectangle ∗rp, Rectangle b)

intDx(Rectangle r)

intDy(Rectangle r)

PointPt(int x, int y)

RectangleRect(int x0, int y0, int x1, int y1)

RectangleRpt(Point p, Point q)

DESCRIPTION

The functions Pt, ­Rect and ­Rpt construct geometrical data types from their components. 

­Addpt returns the Point sum of its arguments: Pt(p.x+q.x, p.y+q.y).  ­Subpt returns the Point difference of its arguments: Pt(p.x-q.x, p.y-q.y).  ­Mulpt returns the Point Pt(p.x∗a, p.y∗a).  ­Divpt returns the Point Pt(p.x/a, p.y/a). 

­Rectaddpt returns the Rectangle Rect(add(r.min, p), add(r.max, p)); ­rectsubpt returns the Rectangle Rpt(sub(r.min, p), sub(r.max, p)). 

­Insetrect returns the Rectangle Rect(r.min.x+n, r.min.y+n, r.max.x-n, r.max.y-n). 

­Canonrect returns a rectangle with the same extent as r, canonicalized so that ­min.x ≤ max.x, and ­min.y ≤ max.y. 

­Eqpt compares its argument Points and returns 0 if unequal, 1 if equal.  ­Eqrect does the same for its argument Rectangles. 

­Ptinrect returns 1 if ­p is a point within r, and 0 otherwise.

­Rectinrect returns 1 if all the pixels in ­r are also in s, and 0 otherwise.

­RectXrect returns 1 if ­r and ­s share any point, and 0 otherwise. 

­Rectclip clips in place the Rectangle pointed to by ­rp so that it is completely contained within b. The return value is 1 if any part of ∗rp is within b. Otherwise, the return value is 0 and ∗rp is unchanged. 

­Combinerect overwrites ­∗rp with the smallest rectangle sufficient to cover all the pixels of ­∗rp and b. 

The functions ­Dx and ­Dy give the width (Δx) and height (Δy) of a Rectangle.  They are implemented as macros. 

SOURCE

­/sys/src/libdraw

SEE ALSO

graphics(2)

Plan 9  —  May 13, 2000

Typewritten Software • bear@typewritten.org • Edmonds, WA 98026