(self, name, focalPoint, position, viewUp)
| 578 | self.positionNames = [] |
| 579 | |
| 580 | def registerViewPoint(self, name, focalPoint, position, viewUp): |
| 581 | self.cameraSettings.append( |
| 582 | { |
| 583 | "name": name, |
| 584 | "nameIdx": len(self.positionNames), |
| 585 | "focalPoint": focalPoint, |
| 586 | "position": position, |
| 587 | "viewUp": viewUp, |
| 588 | } |
| 589 | ) |
| 590 | self.positionNames.append(name) |
| 591 | self.dataHandler.registerArgument( |
| 592 | priority=0, name="multiView", values=self.positionNames |
| 593 | ) |
| 594 | self.dataHandler.updateBasePattern() |
| 595 | |
| 596 | def updatePriority(self, priorityList): |
| 597 | keyList = ["multiView"] |
nothing calls this directly
no test coverage detected