void TR_SHELL02 :: drawDeformedGeometry(oofegGraphicContext &gc, TimeStep *tStep, UnknownType type) { WCRec p [ 3 ]; GraphicObj *go; double defScale = gc.getDefScale(); if ( !gc.testElementGraphicActivity(this) ) { return; } if ( this->giveMaterial()->isActivated(tStep) ) { EASValsSetLineWidth(OOFEG_DEFORMED_GEOMETRY_WIDTH); EASValsSetColor( gc.getDeformedElementColor() ); EASValsSetEdgeColor( gc.getElementEdgeColor() ); EASValsSetEdgeFlag(true); EASValsSetFillStyle(FILL_SOLID); EASValsSetLayer(OOFEG_DEFORMED_GEOMETRY_LAYER); p [ 0 ].x = ( FPNum ) this->giveNode(1)->giveUpdatedCoordinate(1, tStep, defScale); p [ 0 ].y = ( FPNum ) this->giveNode(1)->giveUpdatedCoordinate(2, tStep, defScale); p [ 0 ].z = ( FPNum ) this->giveNode(1)->giveUpdatedCoordinate(3, tStep, defScale); p [ 1 ].x = ( FPNum ) this->giveNode(2)->giveUpdatedCoordinate(1, tStep, defScale); p [ 1 ].y = ( FPNum ) this->giveNode(2)->giveUpdatedCoordinate(2, tStep, defScale); p [ 1 ].z = ( FPNum ) this->giveNode(2)->giveUpdatedCoordinate(3, tStep, defScale); p [ 2 ].x = ( FPNum ) this->giveNode(3)->giveUpdatedCoordinate(1, tStep, defScale); p [ 2 ].y = ( FPNum ) this->giveNode(3)->giveUpdatedCoordinate(2, tStep, defScale); p [ 2 ].z = ( FPNum ) this->giveNode(3)->giveUpdatedCoordinate(3, tStep, defScale); go = CreateTriangle3D(p); EGWithMaskChangeAttributes(WIDTH_MASK | FILL_MASK | COLOR_MASK | EDGE_COLOR_MASK | EDGE_FLAG_MASK | LAYER_MASK, go); EMAddGraphicsToModel(ESIModel(), go); } }
void TR_SHELL02 :: drawRawGeometry(oofegGraphicContext &gc, TimeStep *tStep) { WCRec p [ 3 ]; GraphicObj *go; if ( !gc.testElementGraphicActivity(this) ) { return; } if ( this->giveMaterial()->isActivated(tStep) ) { EASValsSetLineWidth(OOFEG_RAW_GEOMETRY_WIDTH); EASValsSetColor( gc.getElementColor() ); EASValsSetEdgeColor( gc.getElementEdgeColor() ); EASValsSetEdgeFlag(true); EASValsSetFillStyle(FILL_SOLID); EASValsSetLayer(OOFEG_RAW_GEOMETRY_LAYER); p [ 0 ].x = ( FPNum ) this->giveNode(1)->giveCoordinate(1); p [ 0 ].y = ( FPNum ) this->giveNode(1)->giveCoordinate(2); p [ 0 ].z = ( FPNum ) this->giveNode(1)->giveCoordinate(3); p [ 1 ].x = ( FPNum ) this->giveNode(2)->giveCoordinate(1); p [ 1 ].y = ( FPNum ) this->giveNode(2)->giveCoordinate(2); p [ 1 ].z = ( FPNum ) this->giveNode(2)->giveCoordinate(3); p [ 2 ].x = ( FPNum ) this->giveNode(3)->giveCoordinate(1); p [ 2 ].y = ( FPNum ) this->giveNode(3)->giveCoordinate(2); p [ 2 ].z = ( FPNum ) this->giveNode(3)->giveCoordinate(3); go = CreateTriangle3D(p); EGWithMaskChangeAttributes(WIDTH_MASK | FILL_MASK | COLOR_MASK | EDGE_COLOR_MASK | EDGE_FLAG_MASK | LAYER_MASK, go); EGAttachObject(go, ( EObjectP ) this); EMAddGraphicsToModel(ESIModel(), go); } }
void QTrPlaneStrain :: drawDeformedGeometry(oofegGraphicContext &gc, UnknownType type) { WCRec p [ 3 ]; GraphicObj *go; TimeStep *tStep = domain->giveEngngModel()->giveCurrentStep(); double defScale = gc.getDefScale(); if ( !gc.testElementGraphicActivity(this) ) { return; } EASValsSetLineWidth(OOFEG_DEFORMED_GEOMETRY_WIDTH); EASValsSetColor( gc.getDeformedElementColor() ); EASValsSetEdgeColor( gc.getElementEdgeColor() ); EASValsSetEdgeFlag(true); EASValsSetLayer(OOFEG_DEFORMED_GEOMETRY_LAYER); p [ 0 ].x = ( FPNum ) this->giveNode(1)->giveUpdatedCoordinate(1, tStep, EID_MomentumBalance, defScale); p [ 0 ].y = ( FPNum ) this->giveNode(1)->giveUpdatedCoordinate(2, tStep, EID_MomentumBalance, defScale); p [ 0 ].z = 0.; p [ 1 ].x = ( FPNum ) this->giveNode(2)->giveUpdatedCoordinate(1, tStep, EID_MomentumBalance, defScale); p [ 1 ].y = ( FPNum ) this->giveNode(2)->giveUpdatedCoordinate(2, tStep, EID_MomentumBalance, defScale); p [ 1 ].z = 0.; p [ 2 ].x = ( FPNum ) this->giveNode(3)->giveUpdatedCoordinate(1, tStep, EID_MomentumBalance, defScale); p [ 2 ].y = ( FPNum ) this->giveNode(3)->giveUpdatedCoordinate(2, tStep, EID_MomentumBalance, defScale); p [ 2 ].z = 0.; go = CreateTriangle3D(p); EGWithMaskChangeAttributes(WIDTH_MASK | COLOR_MASK | EDGE_COLOR_MASK | EDGE_FLAG_MASK | LAYER_MASK, go); EMAddGraphicsToModel(ESIModel(), go); }
void QTrPlaneStrain :: drawRawGeometry(oofegGraphicContext &gc) { WCRec p [ 3 ]; GraphicObj *go; if ( !gc.testElementGraphicActivity(this) ) { return; } EASValsSetLineWidth(OOFEG_RAW_GEOMETRY_WIDTH); EASValsSetColor( gc.getElementColor() ); EASValsSetEdgeColor( gc.getElementEdgeColor() ); EASValsSetEdgeFlag(true); EASValsSetLayer(OOFEG_RAW_GEOMETRY_LAYER); p [ 0 ].x = ( FPNum ) this->giveNode(1)->giveCoordinate(1); p [ 0 ].y = ( FPNum ) this->giveNode(1)->giveCoordinate(2); p [ 0 ].z = 0.; p [ 1 ].x = ( FPNum ) this->giveNode(2)->giveCoordinate(1); p [ 1 ].y = ( FPNum ) this->giveNode(2)->giveCoordinate(2); p [ 1 ].z = 0.; p [ 2 ].x = ( FPNum ) this->giveNode(3)->giveCoordinate(1); p [ 2 ].y = ( FPNum ) this->giveNode(3)->giveCoordinate(2); p [ 2 ].z = 0.; go = CreateTriangle3D(p); EGWithMaskChangeAttributes(WIDTH_MASK | COLOR_MASK | EDGE_COLOR_MASK | EDGE_FLAG_MASK | LAYER_MASK, go); EGAttachObject(go, ( EObjectP ) this); EMAddGraphicsToModel(ESIModel(), go); }
void Quad10_2D_SUPG :: drawScalar(oofegGraphicContext &gc, TimeStep *tStep) { int i, indx, result = 0; WCRec p [ 3 ]; GraphicObj *tr; FloatArray v1, v2, v3; double s [ 3 ]; if ( !gc.testElementGraphicActivity(this) ) { return; } EASValsSetLayer(OOFEG_VARPLOT_PATTERN_LAYER); // if ((gc.giveIntVarMode() == ISM_local) && (gc.giveIntVarType() == IST_VOFFraction)) { if ( ( gc.giveIntVarType() == IST_VOFFraction ) && ( gc.giveIntVarMode() == ISM_local ) ) { Polygon matvolpoly; //this->formMaterialVolumePoly(matvolpoly, NULL, temp_normal, temp_p, false); EASValsSetColor( gc.getStandardSparseProfileColor() ); //GraphicObj *go = matvolpoly.draw(gc,true,OOFEG_VARPLOT_PATTERN_LAYER); matvolpoly.draw(gc, true, OOFEG_VARPLOT_PATTERN_LAYER); return; } if ( gc.giveIntVarMode() == ISM_recovered ) { result += this->giveInternalStateAtNode(v1, gc.giveIntVarType(), gc.giveIntVarMode(), 1, tStep); result += this->giveInternalStateAtNode(v2, gc.giveIntVarType(), gc.giveIntVarMode(), 2, tStep); result += this->giveInternalStateAtNode(v3, gc.giveIntVarType(), gc.giveIntVarMode(), 3, tStep); } else if ( gc.giveIntVarMode() == ISM_local ) { GaussPoint *gp = integrationRulesArray [ 0 ]->getIntegrationPoint(0); result += giveIPValue(v1, gp, gc.giveIntVarType(), tStep); v2 = v1; v3 = v1; result *= 3; } if ( result != 3 ) { return; } indx = gc.giveIntVarIndx(); s [ 0 ] = v1.at(indx); s [ 1 ] = v2.at(indx); s [ 2 ] = v3.at(indx); EASValsSetLayer(OOFEG_VARPLOT_PATTERN_LAYER); if ( gc.getScalarAlgo() == SA_ISO_SURF ) { for ( i = 0; i < 3; i++ ) { p [ i ].x = ( FPNum ) this->giveNode(i + 1)->giveCoordinate(1); p [ i ].y = ( FPNum ) this->giveNode(i + 1)->giveCoordinate(2); p [ i ].z = 0.; } //EASValsSetColor(gc.getYieldPlotColor(ratio)); gc.updateFringeTableMinMax(s, 3); tr = CreateTriangleWD3D(p, s [ 0 ], s [ 1 ], s [ 2 ]); EGWithMaskChangeAttributes(LAYER_MASK, tr); EMAddGraphicsToModel(ESIModel(), tr); } else if ( ( gc.getScalarAlgo() == SA_ZPROFILE ) || ( gc.getScalarAlgo() == SA_COLORZPROFILE ) ) { double landScale = gc.getLandScale(); for ( i = 0; i < 3; i++ ) { p [ i ].x = ( FPNum ) this->giveNode(i + 1)->giveCoordinate(1); p [ i ].y = ( FPNum ) this->giveNode(i + 1)->giveCoordinate(2); p [ i ].z = s [ i ] * landScale; } if ( gc.getScalarAlgo() == SA_ZPROFILE ) { EASValsSetColor( gc.getDeformedElementColor() ); EASValsSetLineWidth(OOFEG_DEFORMED_GEOMETRY_WIDTH); EASValsSetFillStyle(FILL_SOLID); tr = CreateTriangle3D(p); EGWithMaskChangeAttributes(WIDTH_MASK | COLOR_MASK | FILL_MASK | LAYER_MASK, tr); } else { gc.updateFringeTableMinMax(s, 3); EASValsSetFillStyle(FILL_SOLID); tr = CreateTriangleWD3D(p, s [ 0 ], s [ 1 ], s [ 2 ]); EGWithMaskChangeAttributes(FILL_MASK | LAYER_MASK, tr); } EMAddGraphicsToModel(ESIModel(), tr); } }
void Axisymm3d :: drawScalar(oofegGraphicContext &gc, TimeStep *tStep) { int i, indx, result = 0; WCRec p [ 3 ]; GraphicObj *tr; FloatArray v1, v2, v3; double s [ 3 ], defScale; if ( !gc.testElementGraphicActivity(this) ) { return; } if ( gc.giveIntVarMode() == ISM_recovered ) { result += this->giveInternalStateAtNode(v1, gc.giveIntVarType(), gc.giveIntVarMode(), 1, tStep); result += this->giveInternalStateAtNode(v2, gc.giveIntVarType(), gc.giveIntVarMode(), 2, tStep); result += this->giveInternalStateAtNode(v3, gc.giveIntVarType(), gc.giveIntVarMode(), 3, tStep); } else if ( gc.giveIntVarMode() == ISM_local ) { GaussPoint *gp = integrationRulesArray [ 0 ]->getIntegrationPoint(0); result += giveIPValue(v1, gp, gc.giveIntVarType(), tStep); v2 = v1; v3 = v1; result *= 3; } if ( result != 3 ) { return; } indx = gc.giveIntVarIndx(); s [ 0 ] = v1.at(indx); s [ 1 ] = v2.at(indx); s [ 2 ] = v3.at(indx); EASValsSetLayer(OOFEG_VARPLOT_PATTERN_LAYER); if ( gc.getScalarAlgo() == SA_ISO_SURF ) { for ( i = 0; i < 3; i++ ) { if ( gc.getInternalVarsDefGeoFlag() ) { // use deformed geometry defScale = gc.getDefScale(); p [ i ].x = ( FPNum ) this->giveNode(i + 1)->giveUpdatedCoordinate(1, tStep, defScale); p [ i ].y = ( FPNum ) this->giveNode(i + 1)->giveUpdatedCoordinate(2, tStep, defScale); p [ i ].z = 0.; } else { p [ i ].x = ( FPNum ) this->giveNode(i + 1)->giveCoordinate(1); p [ i ].y = ( FPNum ) this->giveNode(i + 1)->giveCoordinate(2); p [ i ].z = 0.; } } //EASValsSetColor(gc.getYieldPlotColor(ratio)); gc.updateFringeTableMinMax(s, 3); tr = CreateTriangleWD3D(p, s [ 0 ], s [ 1 ], s [ 2 ]); EGWithMaskChangeAttributes(LAYER_MASK, tr); EMAddGraphicsToModel(ESIModel(), tr); } else if ( ( gc.getScalarAlgo() == SA_ZPROFILE ) || ( gc.getScalarAlgo() == SA_COLORZPROFILE ) ) { double landScale = gc.getLandScale(); for ( i = 0; i < 3; i++ ) { if ( gc.getInternalVarsDefGeoFlag() ) { // use deformed geometry defScale = gc.getDefScale(); p [ i ].x = ( FPNum ) this->giveNode(i + 1)->giveUpdatedCoordinate(1, tStep, defScale); p [ i ].y = ( FPNum ) this->giveNode(i + 1)->giveUpdatedCoordinate(2, tStep, defScale); p [ i ].z = s [ i ] * landScale; } else { p [ i ].x = ( FPNum ) this->giveNode(i + 1)->giveCoordinate(1); p [ i ].y = ( FPNum ) this->giveNode(i + 1)->giveCoordinate(2); p [ i ].z = s [ i ] * landScale; } } if ( gc.getScalarAlgo() == SA_ZPROFILE ) { EASValsSetColor( gc.getDeformedElementColor() ); EASValsSetLineWidth(OOFEG_DEFORMED_GEOMETRY_WIDTH); EASValsSetFillStyle(FILL_SOLID); tr = CreateTriangle3D(p); EGWithMaskChangeAttributes(WIDTH_MASK | COLOR_MASK | FILL_MASK | LAYER_MASK, tr); } else { gc.updateFringeTableMinMax(s, 3); EASValsSetFillStyle(FILL_SOLID); tr = CreateTriangleWD3D(p, s [ 0 ], s [ 1 ], s [ 2 ]); EGWithMaskChangeAttributes(FILL_MASK | LAYER_MASK, tr); } EMAddGraphicsToModel(ESIModel(), tr); } }