Code covered by the BSD License  

Highlights from
A Viking Ship

image thumbnail
from A Viking Ship by Pontus Axelsson
A fully-rigged Viking ship with animation.

plotbz(p1,b,c,p2,y,dt,plarg)
%
% PLOTBZ
%
% Plottar en tvdimensionell bzierkurva i xz-planet

function r = plotbz(p1,b,c,p2,y,dt,plarg)    

t=(0:dt:1)';
F=[(1-t).^3 3*t.*(1-t).^2 3*t.^2.*(1-t) t.^3];
pbcp=[p1;b;c;p2];
r=F*pbcp;
plot3(r(:,1),y*ones(size(r(:,1))),r(:,2),plarg);





Contact us at files@mathworks.com