mirror of https://github.com/lammps/lammps.git
git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@10868 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
parent
654f40b1ca
commit
0dc4de43c0
|
@ -113,6 +113,9 @@ Image::Image(LAMMPS *lmp, int nmap_caller) : Pointers(lmp)
|
|||
|
||||
Image::~Image()
|
||||
{
|
||||
for (int i = 0; i < nmap; i++) delete maps[i];
|
||||
delete [] maps;
|
||||
|
||||
for (int i = 0; i < ncolors; i++) delete [] username[i];
|
||||
memory->sfree(username);
|
||||
memory->destroy(userrgb);
|
||||
|
@ -1774,6 +1777,10 @@ int ColorMap::minmax(double mindynamic, double maxdynamic)
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
printf("MINMAX %g %g\n",mindynamic,maxdynamic);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in New Issue