Design Scripting Documentation
     
 
     
  Array Copying  
     
     
  Inputs:  
     
a source array
the target array
where to start copying
how many to copy
     
  Outputs:  
     
nothing really
     
  Implementation
01  function array_copy( source, target, index, count )
02    dim bound: bound = index + count
03    do while( index < bound )
04      target( index ) = source( index )
05      index = index + 1
06    loop
07  end function
 
     

Creative Commons License
The Design Scripting Library, including its sources, online documentation and graphics, are licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 2.5 License.

Online Documentation generated by { vbdoclib } version 1.0
Color-Coding generated by { vbcc } version 2.0
Page timestamp: { Feb. 2, 2006 }





 
     
     
 
Documentation
Cover Page
Expand
Collapse
 
Array
 
Bitmap File
 
Bounding Box
 
Color
 
Container
 
Doclet
 
Ellipse
 
Intersection
 
Language
 
Map
 
Matrix
 
Number
 
Nurbs
 
Range
 
STL File
 
Streams
 
String
 
Surface
 
Text File
 
Triangle
 
Vector
 
Vertex
 
Wave File