Note: This website is archived. For up-to-date information about D projects and development, please visit wiki.dlang.org.

Changes between Version 8 and Version 9 of PortDoc

Show
Ignore:
Author:
baxissimo (IP: 202.226.189.178)
Timestamp:
10/09/07 00:15:09 (17 years ago)
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PortDoc

    v8 v9  
    99 
    1010= Quick Overview = 
     11This is a brief overview of most of the syntax and API changes required to port an OpenMesh/C++ program to OpenMesh/D.  (There are of course all the [http://www.prowiki.org/wiki4d/wiki.cgi?PortingFromCxx usual porting issues] as well.) 
     12 
    1113 * `include <OpenMesh/Core/Mesh/PolyMesh_ArrayKernelT.hh>` --> `import OpenMesh.Core.Mesh.PolyMesh_ArrayKernelT;` 
    1214 * `Point& Mesh::point(VertexHandle)` --> `Point Mesh.point(VertexHandle)` or `Point* Mesh.point_ptr(VertexHandle)`