Line clipping: Cohen-Sutherland
Project description
Line clipping
lineClipping.jl Cohen-Sutherland line clipping algorithm for Julia. Input scalars, output intersection length, or None if no intersection.
lineclipping.f90 Cohen-Sutherland line clipping algorithm for massively parallel coarray modern Fortran. Input scalars or arrays, output intersections or NaN if no intersection.
lineClipping.py Cohen-Sutherland line clipping algorithm for Python. Input scalars, output intersection length, or None if no intersection.
Install
Python
python -m pip install -e .
Fortran
If you want to use the Fortran Cohen-Sutherland line clipping modules directly (optional):
cd bin cmake .. make
Usage
The main difference with textbook implementations is that I return a sentinel value (NaN, None, nothing) if there’s no intersection of line with box.
Python
import pylineclip.lineclipping as lc
x3,y3,x4,y4 = lc.cohensutherland((xmin, ymax, xmax, ymin, x1, y1, x2, y2)
If no intersection, (None, None, None, None) is returned.
Fortran
lineclipping.f90 has two subroutines. Pick Ccohensutherland if you’re calling from C/C++/Python, which cannot tolerate assummed-shape arrays. It’s a slim wrapper to cohensutherland which is elemental (can handle scalar or any rank array).
Fortran programs will simply use
use lineclipping
call cohensutherland(xmin,ymax,xmax,ymin,x1,y1,x2,y2)
The arguments are:
INPUTS ------ xmin,ymax,xmax,ymin: upper left and lower right corners of box (pixel coordinates) INOUT ----- x1,y1,x2,y2: in - endpoints of line out - intersection points with box. If no intersection, all NaN
Julia
Simliar to Python, except nothing is returned if no intersection found.
cohensutherland(xmin, ymax, xmax, ymin, x1, y1, x2, y2)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file pylineclip-0.9.0.tar.gz
.
File metadata
- Download URL: pylineclip-0.9.0.tar.gz
- Upload date:
- Size: 3.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 363f799f147c4412d778c0855cf36b21dba1a2d22e4d6d6b926b98009e6b0934 |
|
MD5 | 6b57dd70a68ad3ed48206a3ca56a8cc6 |
|
BLAKE2b-256 | 86a4898482659431e6d0eca3983611d83d83aa5b2985c6549897df3541da6e8f |