Can someone suggest the best way to plot a directional 2D equilateral triangle?
3 ビュー (過去 30 日間)
古いコメントを表示
I'm trying to write some simple code that will plot a 2D equilateral triangle, with the triangle center specified at a distance from an existing equilateral triangle, which is pointing at it? Any help offered would be greatly appreciated.
0 件のコメント
回答 (2 件)
DGM
2021 年 4 月 14 日
This is incomplete, but it should be a start.
r=10; % triangle radius
p0=[0 0]; % prior point [x,y]
p=[50 50]; % current point [x,y]
% offset angle based on distance vector
% this may already be known from prior triangle orientation
th=atan2d(p(2)-p0(2),p(1)-p0(1))+180;
% calculate vertex locations
xv=r*cosd(th+[0 120 240 0]) + p(1);
yv=r*sind(th+[0 120 240 0]) + p(2);
% plot this triangle
plot(xv,yv)
xlim([0 100])
ylim([0 100])
axis equal
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Triangulation Representation についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!