Creating a rectangle with 4 points

20 visualizaciones (últimos 30 días)
Umut Ege Ulucay
Umut Ege Ulucay el 1 de Mayo de 2020
Editada: Adam Danz el 4 de Mayo de 2020
Hello, I have 4 points with (x,y,z) and I want to have a closed shape which connects them.
I actually want to draw 4 lines between the 4 points and make them a rectangle.
Thank you for help.

Respuesta aceptada

Adam Danz
Adam Danz el 1 de Mayo de 2020
Editada: Adam Danz el 4 de Mayo de 2020
plot3([2 4 4 2 2],[1 1 5 5 1], [3 3 3 3 3], '-k') % for (x,y,z)
% plot([2 4 4 2 2],[1 1 5 5 1], '-k') % for (x,y)
grid on
axis equal
  2 comentarios
Umut Ege Ulucay
Umut Ege Ulucay el 2 de Mayo de 2020
Editada: Umut Ege Ulucay el 2 de Mayo de 2020
This one works pretty well, thank you.
I want to ask one more question. What if I have couple of rectangles and I want to fill the inside of them according to some values and a colorbar to show the values. Thanks for your help so far.
edit: As I see, I can use fill3 function, am i right?
Adam Danz
Adam Danz el 2 de Mayo de 2020
Editada: Adam Danz el 4 de Mayo de 2020
You can check out fill3(). There are examples toward the bottom of that page.
This page also shows you how to do it with patch().
To link the colors of the rectangles to a colobar, you can define a color map which will be a nx3 matrix of RGB values. Assign the colormap to your axes, and then use the rows of the colormap to assign color to each patch. If you get stuck, let me know where I can help.

Iniciar sesión para comentar.

Más respuestas (1)

Image Analyst
Image Analyst el 1 de Mayo de 2020
Did you try rectangle()?
rectangle('Position', [x1, y1, x2-x1, y2-y1], 'FaceColor', 'r', 'EdgeColor', 'k');
or using line():
line([x1,x2], [y1, y1], 'Color', 'r', 'LineWidth', 2);
hold on;
line([x1,x2], [y2, y2], 'Color', 'r', 'LineWidth', 2);
line([x1,x1], [y1, y2], 'Color', 'r', 'LineWidth', 2);
line([x2,x2], [y1, y2], 'Color', 'r', 'LineWidth', 2);
hold off;
  1 comentario
Umut Ege Ulucay
Umut Ege Ulucay el 2 de Mayo de 2020
Yes that works but I asked 3d with point z. Thank you anyways

Iniciar sesión para comentar.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by