Skip to content
Snippets Groups Projects

Add the SpecialShapes package to GeoModelIO

Merged Marilena Bandieramonte requested to merge master-specialshape-io into master
1 unresolved thread

Add the GeoSpecialShapes package to GeoModelIO

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
51 57
52 58 int adj_fan_number = fan_number;
53 59 if(adj_fan_number < lwc()->m_FirstFan) {
54 p.rotateZ((adj_fan_number - lwc()->m_FirstFan) * lwc()->m_FanStepOnPhi);
60 //p.rotateZ((adj_fan_number - lwc()->m_FirstFan) * lwc()->m_FanStepOnPhi);
61 p = GeoTrf::RotateZ3D((adj_fan_number - lwc()->m_FirstFan) * lwc()->m_FanStepOnPhi)*p;
62 //p.RotateZ3D((adj_fan_number - lwc()->m_FirstFan) * lwc()->m_FanStepOnPhi);
63 p = GeoTrf::RotateZ3D((adj_fan_number - lwc()->m_FirstFan) * lwc()->m_FanStepOnPhi)*p;
  • Hi Riccardo, thanks for merging it! I checked again the code this morning with a fresh look and I spotted a bug. I will fix it and commit it directly to the master. Is basically one rotation instruction that is repeated twice, I commented it in the code.

  • Please register or sign in to reply
    Loading