Changeset 1559 for trunk/GSASIIplot.py


Ignore:
Timestamp:
Nov 3, 2014 2:48:51 PM (8 years ago)
Author:
vondreele
Message:

use deepcopy for various copy operations in G2ddataGUI
use complementary colors to background for cell edges
trap superlattice in cubics
more fixes to cell indexing routines from possible use of superlattice
add HStrainVals to G2spc
use it (maybe) in G2strIO, Math
make arguments for GetReflPos? & GetReflPosDeriv? the same (use A not G)
add GetDij? to G2strMath
topas xye file comments start with "'" sometimes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/GSASIIplot.py

    r1519 r1559  
    38563856    mapPeakVecs = np.inner(mV,Bmat)
    38573857
    3858     uColors = [Rd,Gr,Bl,Wt, Wt,Wt,Wt,Wt, Wt,Wt,Wt,Wt]
     3858    backColor = np.array(list(drawingData['backColor'])+[0,])
     3859    Bc = np.array(list(drawingData['backColor']))
     3860    uColors = [Rd,Gr,Bl,Wt-Bc, Wt-Bc,Wt-Bc,Wt-Bc,Wt-Bc, Wt-Bc,Wt-Bc,Wt-Bc,Wt-Bc]
    38593861    altDown = False
    38603862    shiftDown = False
     
    47494751    Page.camera['position'] = drawingData['cameraPos']
    47504752    Page.camera['viewPoint'] = np.inner(Amat,drawingData['viewPoint'][0])
    4751     Page.camera['backColor'] = np.array(list(drawingData['backColor'])+[0,])/255.
     4753    Page.camera['backColor'] = backColor/255.
    47524754    try:
    47534755        Page.canvas.SetCurrent()
Note: See TracChangeset for help on using the changeset viewer.