v create
From DavinciWiki
Contents: Description, Arguments, Usage, Examples, Sub-Functions, Related Functions, Source Supported Under Version: >1.00
Description
Arguments and Return Values Arguments: Accepts a strucutre with the appropiate elements Return Values: Returns a v_object with a .data element added
Usage Syntax: v_create(box [, data = VAL] [, ignore = FLOAT]) 'box' - A structure with .x, .y, .h, and .w elements. 'data' - optional array of data to add to the structure, with height .h and width .w 'ignore' - Value which will be filled in to the new .data element
Examples dv> box={w=500,h=250,x=0,y=0} struct, 4 elements w: 500 h: 250 x: 0 y: 0 dv> a=v_create(box,ignore=0) struct, 5 elements w: 500 h: 250 x: 0 y: 0 data: 500x250x1 array of int, bsq format [500,000 bytes] |
DavinciWiki Mini-Nav Bar Contents
Contact Developers
All other topics
Related Functions
Recent Library Changes Created On: 02-20-2006 |