432{
434
435
436
438
439
440
441
442
443
444
445
446 std::vector<G4Point3D> vertices;
447 std::vector<G4Normal3D> normals;
448
449
450
451 typedef std::pair<G4Point3D,G4Point3D> Line;
452 std::vector<Line> lines;
453 auto insertIfNew = [&lines](const Line& newLine) {
454
455
456
457
458
459 lines.push_back(newLine);
460 };
461
462 G4bool isAuxilaryEdgeVisible =
fpViewer->GetViewParameters().IsAuxEdgeVisible();
464 do {
469 notLastFace = a_polyhedron.
GetNextFacet(nEdges, vertex, edgeFlag, normal);
470 vertices.push_back(vertex[0]);
471 vertices.push_back(vertex[1]);
472 vertices.push_back(vertex[2]);
473 normals.push_back(normal[0]);
474 normals.push_back(normal[1]);
475 normals.push_back(normal[2]);
476 if(isAuxilaryEdgeVisible||edgeFlag[0]>0)insertIfNew(Line(vertex[0],vertex[1]));
477 if(isAuxilaryEdgeVisible||edgeFlag[1]>0)insertIfNew(Line(vertex[1],vertex[2]));
478 if (nEdges == 3) {
479
480
481 if(isAuxilaryEdgeVisible||edgeFlag[2]>0)insertIfNew(Line(vertex[2],vertex[0]));
482 } else if (nEdges == 4) {
483
484
485 vertices.push_back(vertex[2]);
486 vertices.push_back(vertex[3]);
487 vertices.push_back(vertex[0]);
488 normals.push_back(normal[2]);
489 normals.push_back(normal[3]);
490 normals.push_back(normal[0]);
491 if(isAuxilaryEdgeVisible||edgeFlag[2]>0)insertIfNew(Line(vertex[2],vertex[3]));
492 if(isAuxilaryEdgeVisible||edgeFlag[3]>0)insertIfNew(Line(vertex[3],vertex[0]));
493 } else {
495 << "ERROR: polyhedron face with unexpected number of edges (" << nEdges << ')'
496 <<
"\n Tag: " <<
fpModel->GetCurrentTag()
498 return;
499 }
500 } while (notLastFace);
501
503 switch (drawing_style) {
505
506 break;
508 break;
510
511 break;
513 break;
515
516 return;
517 }
518
520 if (!currentNode) return;
521
522 tools::sg::separator* sep = new tools::sg::separator;
523 currentNode->add(sep);
524
525
526 {tools::sg::matrix* mtx = new tools::sg::matrix;
531 0, 0, 0, 1);
532 sep->add(mtx);}
533
534 {
const auto& colour =
GetColour(a_polyhedron);
535 tools::sg::rgba* mat = new tools::sg::rgba();
536 mat->color =
537 tools::colorf(float(colour.GetRed()),
538 float(colour.GetGreen()),
539 float(colour.GetBlue()),
540 float(colour.GetAlpha()));
541 sep->add(mat);}
542
546
547 {tools::sg::draw_style* ds = new tools::sg::draw_style;
548 ds->style = tools::sg::draw_filled;
549
550 sep->add(ds);}
551
552 tools::sg::atb_vertices* vtxs = new tools::sg::atb_vertices;
553 vtxs->mode = tools::gl::triangles();
554 sep->add(vtxs);
555
556 const auto nVerts = vertices.size();
557 for (size_t i = 0; i < nVerts; i++) {
558 vtxs->add(float(vertices[i].x()),float(vertices[i].y()),float(vertices[i].z()));
559 vtxs->add_normal(float(normals[i].x()),float(normals[i].y()),float(normals[i].z()));
560 }
561 }
562
566
567 {tools::sg::draw_style* ds = new tools::sg::draw_style;
568 ds->style = tools::sg::draw_lines;
569 ds->line_width = 1;
570 sep->add(ds);}
571
572 tools::sg::vertices* vtxs = new tools::sg::vertices;
573 vtxs->mode = tools::gl::lines();
574 sep->add(vtxs);
575
576 for (const auto& line: lines) {
577 vtxs->add(float(line.first.x()),float(line.first.y()),float(line.first.z()));
578 vtxs->add(float(line.second.x()),float(line.second.y()),float(line.second.z()));
579 }
580
581 }
582}
HepGeom::Normal3D< G4double > G4Normal3D
HepGeom::Point3D< G4double > G4Point3D
G4GLOB_DLL std::ostream G4cerr
const G4Colour & GetColour()
G4Transform3D fObjectTransformation
const G4VisAttributes * fpVisAttribs
G4ViewParameters::DrawingStyle GetDrawingStyle(const G4VisAttributes *)
const G4VisAttributes * GetVisAttributes() const
G4int GetNoFacets() const
G4bool GetNextFacet(G4int &n, G4Point3D *nodes, G4int *edgeFlags=nullptr, G4Normal3D *normals=nullptr) const