Changeset 9259


Ignore:
Timestamp:
08/10/11 15:50:24 (14 years ago)
Author:
jschierm
Message:

Addition of Kml2Expx c module (and minor change to KMLMeshWritex module).

Location:
issm/trunk/src/c/modules
Files:
3 added
2 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified issm/trunk/src/c/modules/KMLMeshWritex/KMLMeshWritex.cpp

    r8461 r9259  
    9696                for (i=0; i<mcmap; i++) {
    9797                        klsty=new KML_LineStyle();
    98                         sprintf(klsty->color     ,"ff000000");
     98//                      sprintf(klsty->color     ,"ff000000");
     99                        sprintf(klsty->color     ,"%02x%02x%02x%02x",
     100                                        (int)255,
     101                                        (int)floor(cmap[ipt+2]*255+0.5),
     102                                        (int)floor(cmap[ipt+1]*255+0.5),
     103                                        (int)floor(cmap[ipt  ]*255+0.5));
    99104                        sprintf(klsty->colormode ,"normal");
    100105                        klsty->width     =lwidth;
  • TabularUnified issm/trunk/src/c/modules/modules.h

    r9206 r9259  
    5757#include "./Ll2xyx/Ll2xyx.h"
    5858#include "./Exp2Kmlx/Exp2Kmlx.h"
     59#include "./Kml2Expx/Kml2Expx.h"
    5960#include "./MassFluxx/MassFluxx.h"
    6061#include "./MaxAbsVxx/MaxAbsVxx.h"
Note: See TracChangeset for help on using the changeset viewer.