本文介绍了3d图 - > 2d圈 - >特定度/斜率/倾斜度的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
您好,这是使用谎言代数在3d图中创建二维圆的代码,
Hello, here is a code of creating a 2d circle in a 3d plot using liear algebra,
r=1;
theta=-pi:0.01:pi;
x=r*cos(theta);
y=r*sin(theta);
plot(x,y,zeroes(1,numel(x)));
我怎么能给圆圈一个特定的度数/给它一些倾斜?
how can i give the circle an specific degree / give it some tilt ?
推荐答案
这篇关于3d图 - > 2d圈 - >特定度/斜率/倾斜度的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!