Code covered by the BSD License  

Highlights from
geom2d

image thumbnail
from geom2d by David Legland
Geometry library for matlab. Performs geometric computations on points, lines, circles, polygons...

edges2d(varargin)
function edges2d(varargin)
%EDGES2D  Description of functions operating on planar edges
%
%   An edge is represented by the coordinate of its extremities:
%   EDGE = [X1 Y1 X2 Y2];
%
%   A set of edges is represented by a N-by-4 array, each row representing
%   an edge.
%
%
%   See also:
%   lines2d, rays2d, points2d
%   createEdge, edgeAngle, edgeLength, edgeToLine, midPoint
%   intersectEdges, intersectLineEdge, isPointOnEdge, edgeToPolyline
%   clipEdge, transformEdge, intersectEdgePolygon
%   drawEdge, drawCenteredEdge
%
% ------
% Author: David Legland
% e-mail: david.legland@grignon.inra.fr
% Created: 2008-10-13,    using Matlab 7.4.0.287 (R2007a)
% Copyright 2008 INRA - BIA PV Nantes - MIAJ Jouy-en-Josas.

help('edges2d');

Contact us