필터 지우기
필터 지우기

help with block letter

조회 수: 6 (최근 30일)
random1072
random1072 2020년 4월 16일
댓글: random1072 2020년 4월 16일
im trying to create a W stencil. shown is what i currently have along with my code and also my desired w output. any help would be awesome. thank you.
  댓글 수: 2
Geoff Hayes
Geoff Hayes 2020년 4월 16일
Mitch - please attach your code rather than a screenshot of it. Also, does the second image represent what your code produces?
random1072
random1072 2020년 4월 16일
Hello Geoff, yes the second image is my current output and the third image is my desired output for letter W. attatched is my code. Thank you

댓글을 달려면 로그인하십시오.

채택된 답변

Geoff Hayes
Geoff Hayes 2020년 4월 16일
I think that part of the problem with the x positions in that there are too many that are the identical. If we look at the desired image and at each vertex, none have the same x position/coordinate yet the code produces 5 at -0.892857142857143 and 5 at 0.892857142857143. (Duplication is expected for the y-coordinates.) Also, it isn't clear where some of the factors (i.e 0.56) originate from so perhaps you just want to start simple and make some easy assumptions. If we assume that the width of the stencil (the 0.5) is the same as the base of the three triangles (the two upsidedown ones and the one in the middle) then just start in the middle at (0,center_height) and move clockwise around the letter. To get you started, you might do
total_height = 2*center_height; % I think this should be true?
total_width = total_height/aspect;
trunkWidth = (1/5)*total_width;
pos = [ 0 , center_height;
-0.5*trunkWidth , 0; % moving counter clockwis
-1.5*trunkWidth , 0;
% etc.
  댓글 수: 1
random1072
random1072 2020년 4월 16일
Thank you

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Annotations에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by