加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
drawfloor.m 747 Bytes
一键复制 编辑 原始数据 按行查看 历史
narasimhareddy04 提交于 2020-04-16 12:44 . Add files via upload
function drawfloor(n)
%Input half the number of blocks of finite rectangular chess like floor.
%drawfloor(10)
%This creates a floor of 21x21 chess like blocks
hold on;
for x=-n:n
for y=-n:n
P1=[x-1,y-1,0];
P2=[x,y-1,0];
P3=[x,y,0];
P4=[x-1,y,0];
if mod(y,2)==mod(x,2)
X = [P1(1) P2(1) P3(1) P4(1)];
Y = [P1(2) P2(2) P3(2) P4(2)];
Z = [P1(3) P2(3) P3(3) P4(3)];
fill3(X, Y, Z,(1/255)*[54,233,233]);
else
X = [P1(1) P2(1) P3(1) P4(1)];
Y = [P1(2) P2(2) P3(2) P4(2)];
Z = [P1(3) P2(3) P3(3) P4(3)];
fill3(X, Y, Z,(1/255)*[255,255,255]);
end
end
end
end
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化