TA的每日心情 | 开心 2019-11-19 15:32 |
---|
签到天数: 1 天 [LV.1]初来乍到
|
700 是 n_undef_line_width 設7mil (brd unit設mil 且小數點後有2位 所以7*100=700)
2000 是 n_shape_bound 設20mil (brd unit設mil 且小數點後有2位 所以20*100=2000)
去看skill 的pdf
(axlfcreate t_name l_params l_vis)
The axlfcreate call includes these arguments and passes all parameters needed as
arguments to axlDBCreateFilmRec:
t_name Name of the record to be created, of the form "NAME"
l_params List consisting of 13 numbers, of the form '(0 0 0 ...), which
correspond to the Film Options fields in the film control form.
l_vis The list of visible layers, each layer enclosed in quotes, space
delimited, of the form '("ETCH/TOP" "VIA/TOP" ...)
l_params : 內有13個參數
Arguments
t_filmname The name of the film record to create.
n_rotate_code 0, 2, 4, or 6, corresponding to 0, 90, 180, or 270 degree rotation.
n_x_offset Film record block origin x offset.
n_y_offset Film record block origin y offset.
n_undef_line_width Film record undefined line width.
n_shape_bound Shape bounding box size.
n_plot_mode Film record plot mode -- 0 = NEGATIVE, 1 = POSITIVE.
n_mirrored Flag denoting mirroring.
n_supp_unconnect Indicator to not flash unconnected pads
n_draw_pad Indicator to draw pads.
n_aper_rot Boolean indicator for aperture rotation.
n_fill_out_shapes Boolean indicator to fill outside shapes. This is the opposite of
the “suppress shape fill” switch in the film control form, for
example, if suppress shape fill is selected,
fill_out_shapes should be 0. This is named this way
because art_film_block_type structures have
fill_out_shapes fields instead of
suppress_shape_fill fields.
n_vector_based Boolean indicator for vector-based pad behavior.
Example 1
(axlfcreate "TRACE_2" '(0 0 0 0 0 1 0 0 0 0 0 0 1) '("ETCH/TRACE_2" "PIN/TRACE_2"
"VIA CLASS/TRACE_2" ))
|
|