PreprocessPts5 |
Syntax |
PreprocessPts5(Pts: LIST, Toler: LIST): LIST PreprocessPts5(Pts: LIST, Toler: LIST, "Grid"): LIST PreprocessPts5(Pts: LIST, Toler: LIST, "Subdiv"): LIST PreprocessPts5(Pts: LIST, Toler: LIST, "Aggr"): LIST |
Description |
Example |
Pts := [[-1,0],[0,0],[1,0],[99,1],[99,0],[99,-1]]; Toler := [3,3]; PreprocessPts5(Pts, Toler); [[99, 0], [0, 0]] ------------------------------- PreprocessPts5(Pts, [0.8,0.8]); [[-1/2, 0], [1, 0], [99, 1/2], [99, -1]] ------------------------------- PreprocessPts5(Pts, [0.9,0.9], "Aggr"); -- exhibits tolerance flex [[0, 0], [99, 0]] ------------------------------- |
See Also |