Mercurial > repos > public > sbplib
annotate +parametrization/old/triang_interp_pts.m @ 975:47b48a97c675 feature/getBoundaryOperator
Stupid merge makes this branch dangerous. Merging with other branches will result in unexpected changes. Never merge this branch with anything. Closing branch.
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Thu, 03 Jan 2019 13:24:39 +0100 |
parents | 81e0ead29431 |
children |
rev | line source |
---|---|
0 | 1 % Creates a transfinite interpolation from connecting the four points wiht straight lines. |
2 function [S, g1, g2, g3] = triang_interp_pts(p1,p2,p3) | |
3 if size(p1) ~= [2 1] | |
4 error('p1 is strange!'); | |
5 end | |
6 | |
7 g1 = @(t)(p1 + t*(p2-p1)); | |
8 g2 = @(t)(p2 + t*(p3-p2)); | |
9 g3 = @(t)(p3 + t*(p1-p3)); | |
10 | |
248
81e0ead29431
Fixed package names in +parametrization
Jonatan Werpers <jonatan@werpers.com>
parents:
151
diff
changeset
|
11 S = parametrization.triang_interp(g1,g2,g3); |
0 | 12 end |