3

VHDLで円を描くにはどうすればよいですか?私のBDFデザインがあり ます

さて、半径100ピクセルまでの赤い円を描く必要があります。ベクトルを使うべきだと思いますが、どうやって?

entity VGAFrameTest is
port(   yrow, xcolumn : in unsigned(9 downto 0); -- row and  column number of VGA video
        VGA_CLK : in std_logic;                -- pixel clock
        VGA_R, VGA_G, VGA_B: out std_logic_vector(9 downto 0)); --  color information
end;

architecture rtl of VGAFrameTest is
constant COLOR_ON : std_logic_vector(9 downto 0) := (others=>'1'); 
constant COLOR_OFF : std_logic_vector(9 downto 0) := (others=>'0');
constant ROW_HEIGHT : integer := 480; -- number of visible rows
-- A test of visible range is recommended
-- VGA 640x480@60Hz resolution is not natural for LCD monitors
-- They support it but some monitors do not display all columns
-- 1 or 2 last columns can be missing
constant COLUMN_WIDTH : integer := 640 -1 ; -- number of visible columns - correction

begin
  frame:process(VGA_CLK)
  begin
  if rising_edge(VGA_CLK) then
        VGA_R<=COLOR_ON;VGA_G<=COLOR_ON;VGA_B<=COLOR_ON; --initilize  color to white  
        if (yrow = 240 and xcolumn = 320) then
          VGA_B<=COLOR_OFF; VGA_G<=COLOR_OFF; 
        elsif yrow = 1 or yrow = ROW_HEIGHT-2 or xcolumn=1 or xcolumn = COLUMN_WIDTH-2 then
          VGA_R<=COLOR_OFF; VGA_G<=COLOR_OFF; VGA_B<=COLOR_OFF; -- black frame
        elsif yrow = ROW_HEIGHT-1 then        
          VGA_B<=COLOR_OFF; VGA_G<=COLOR_OFF; --last  column is red
        end if;  
 end if;    
 end process;

end;
4

2 に答える 2

2

X**2 + Y**2 = R**2; 1つのアプローチは、次のようないくつかのバリエーションです。Y = Sqrt(R**2 - X**2)

効率的な実装の秘訣は、sqrtのような高価な操作を回避し、(わずかに)高価な乗算を最小限に抑えることです。

Yを推測し(Yが0になることがわかっている場所から始めます)、それを2乗して、新しいXごとにR * 2-X * 2と比較し、間違っている場合は推測を修正します。マーティンの検索用語はここで役に立ちます。

画面上の適切な場所に原点(0,0)を設定するための座標変換は、比較的簡単です。

于 2012-11-22T12:24:30.740 に答える
2

157696を(160000-r ^ 2)に変更することで、任意の半径を設定できます。

480と640は円の中心に2を掛けたものです

  begin
      frame:process(VGA_CLK)
      begin
      if rising_edge(VGA_CLK) then 
      VGA_R<=COLOR_OFF;VGA_G<=COLOR_OFF;VGA_B<=COLOR_OFF;
            if yrow>159 and yrow <320 and xcolumn < 440  and xcolumn > 199  then 
              VGA_B<=COLOR_ON; VGA_G<=COLOR_ON;VGA_R<=COLOR_ON;   

               if  (480*yrow-yrow*yrow+640*xcolumn-xcolumn*xcolumn )> 157696   then
              VGA_B<="0001001100"; VGA_G<=COLOR_OFF; VGA_R <= "1011111000";  
             end if;
            end if;  


 end if;    
 end process;
于 2012-11-24T18:20:04.970 に答える