⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 one_ray.pro

📁 basic median filter simulation
💻 PRO
字号:
pro one_ray,xcen,ycen,len,angle,terminus,nodraw=nodraw, _EXTRA=_extra, $    data = data, normal = normal;+; NAME:;       ONE_RAY; PURPOSE:;       Draw a line with a specified starting point, length, and  angle;; CALLING SEQUENCE:;       one_ray, xcen, ycen, len, angle, terminus, /NODRAW ];; INPUT PARAMETERS:;       xcen, ycen = starting point in device coordinates, floating point ;                       scalars;       len        = length in pixels, device coordinates;       angle      = angle in degrees counterclockwise from +X direction;; OUTPUT PARAMETERS:;       terminus = two-element vector giving ending point of ray in device;               coordinates;; OPTIONAL KEYWORD INPUT PARAMETERS:;       /nodraw   if non-zero, the ray is not actually drawn, but the terminus;               is still calculated;;        Any valid keyword to PLOTS can also be passed ot ONE_RAY.   In;        particular, COLOR, THICK, and LINESTYLE control the color, thickness;        and linestyle of the drawn line.; EXAMPLE:;       Draw a double thickness line of length 32 pixels from (256,256) ;       45 degrees counterclockwise from the X axis;;       IDL> one_ray, 256, 256, 32, 45 ,term, THICK = 2;; PROCEDURE:  straightforward matrix arithmetic;; MODIFICATION HISTORY:;    Written by R. S. Hill, Hughes STX Corp., 20-May-1992.;    Modified to work correctly for COLOR=0  J.Wm.Parker  HITC   1995 May 25;    Added _EXTRA keywords to PLOT   W. Landsman   November 2006;- On_error,2 compile_opt idl2 if N_params() LT 3 then begin    print,'Syntax -  one_ray, xcen, ycen, len, angle, [terminus,] ' + $               '[ /DATA, /NORMAL, THICK= ,COLOR =, /NODRAW ]' endif device = 1 - (keyword_set(normal) or keyword_set(data) ) sina = sin(angle/!radeg) cosa = cos(angle/!radeg) rot_mat = [ [ cosa, sina ], [-sina, cosa ] ] terminus =  (rot_mat # [len, 0.0]) + [xcen, ycen] if not keyword_set(nodraw) then $   plots, [xcen, terminus[0]], [ycen, terminus[1]], $      DEVICE=device, Normal=Normal,_STRICT_Extra= _extra return end

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -