46{
48 G4UIparameter* parameter;
49
50 fpCommandSetColour = new G4UIcommand
51 ("/vis/touchable/set/colour", this);
52 fpCommandSetColour->SetGuidance("Set colour of current touchable.");
53 fpCommandSetColour->SetGuidance
54 ("Use \"/vis/set/touchable\" to set current touchable.");
56 parameter = new G4UIparameter("red", 's', omitable = true);
58 fpCommandSetColour->SetParameter(parameter);
59 parameter = new G4UIparameter("green", 'd', omitable = true);
61 fpCommandSetColour->SetParameter(parameter);
62 parameter = new G4UIparameter("blue", 'd', omitable = true);
64 fpCommandSetColour->SetParameter(parameter);
65 parameter = new G4UIparameter("opacity", 'd', omitable = true);
67 fpCommandSetColour->SetParameter(parameter);
68
69 fpCommandSetDaughtersInvisible = new G4UIcmdWithABool
70 ("/vis/touchable/set/daughtersInvisible", this);
71 fpCommandSetDaughtersInvisible->SetGuidance
72 ("Daughters of current touchable invisible: true/false.");
73 fpCommandSetDaughtersInvisible->SetGuidance
74 ("Use \"/vis/set/touchable\" to set current touchable.");
75 fpCommandSetDaughtersInvisible->SetParameterName("daughtersInvisible", omitable = true);
76 fpCommandSetDaughtersInvisible->SetDefaultValue(true);
77
78 fpCommandSetForceAuxEdgeVisible = new G4UIcmdWithABool
79 ("/vis/touchable/set/forceAuxEdgeVisible", this);
80 fpCommandSetForceAuxEdgeVisible->SetGuidance
81 ("Force auxiliary (soft) edges of current touchable to be visible: true/false.");
82 fpCommandSetForceAuxEdgeVisible->SetGuidance
83 ("Use \"/vis/set/touchable\" to set current touchable.");
84 fpCommandSetForceAuxEdgeVisible->SetParameterName("forceAuxEdgeVisible", omitable = true);
85 fpCommandSetForceAuxEdgeVisible->SetDefaultValue(true);
86
87 fpCommandSetForceCloud = new G4UIcmdWithABool
88 ("/vis/touchable/set/forceCloud", this);
89 fpCommandSetForceCloud->SetGuidance
90 ("Force current touchable always to be drawn as a cloud.");
91 fpCommandSetForceCloud->SetGuidance
92 ("Use \"/vis/set/touchable\" to set current touchable.");
93 fpCommandSetForceCloud->SetParameterName("force", omitable = true);
94 fpCommandSetForceCloud->SetDefaultValue(true);
95
96 fpCommandSetForceSolid = new G4UIcmdWithABool
97 ("/vis/touchable/set/forceSolid", this);
98 fpCommandSetForceSolid->SetGuidance
99 ("Force current touchable always to be drawn solid (surface drawing).");
100 fpCommandSetForceSolid->SetGuidance
101 ("Use \"/vis/set/touchable\" to set current touchable.");
102 fpCommandSetForceSolid->SetParameterName("force", omitable = true);
103 fpCommandSetForceSolid->SetDefaultValue(true);
104
105 fpCommandSetForceWireframe = new G4UIcmdWithABool
106 ("/vis/touchable/set/forceWireframe", this);
107 fpCommandSetForceWireframe->SetGuidance
108 ("Force current touchable always to be drawn as wireframe.");
109 fpCommandSetForceWireframe->SetGuidance
110 ("Use \"/vis/set/touchable\" to set current touchable.");
111 fpCommandSetForceWireframe->SetParameterName("forceWireframe", omitable = true);
112 fpCommandSetForceWireframe->SetDefaultValue(true);
113
114 fpCommandSetLineSegmentsPerCircle = new G4UIcmdWithAnInteger
115 ("/vis/touchable/set/lineSegmentsPerCircle", this);
116 fpCommandSetLineSegmentsPerCircle->SetGuidance
117 ("For current touchable, set number of line segments per circle, the"
118 "\nprecision with which a curved line or surface is represented by a"
119 "\npolygon or polyhedron, regardless of the view parameters."
120 "\nNegative to pick up G4Polyhedron default value.");
121 fpCommandSetLineSegmentsPerCircle->SetGuidance
122 ("Use \"/vis/set/touchable\" to set current touchable.");
123 fpCommandSetLineSegmentsPerCircle->SetParameterName("lineSegmentsPerCircle", omitable = true);
124 fpCommandSetLineSegmentsPerCircle->SetDefaultValue(0);
125
126 fpCommandSetLineStyle = new G4UIcmdWithAString
127 ("/vis/touchable/set/lineStyle", this);
128 fpCommandSetLineStyle->SetGuidance("Set line style of current touchable drawing.");
129 fpCommandSetLineStyle->SetGuidance
130 ("Use \"/vis/set/touchable\" to set current touchable.");
131 fpCommandSetLineStyle->SetParameterName("lineStyle", omitable = true);
132 fpCommandSetLineStyle->SetCandidates("unbroken dashed dotted");
133 fpCommandSetLineStyle->SetDefaultValue("unbroken");
134
135 fpCommandSetLineWidth = new G4UIcmdWithADouble
136 ("/vis/touchable/set/lineWidth", this);
137 fpCommandSetLineWidth->SetGuidance("Set line width of current touchable.");
138 fpCommandSetLineWidth->SetGuidance
139 ("Use \"/vis/set/touchable\" to set current touchable.");
140 fpCommandSetLineWidth->SetParameterName("lineWidth", omitable = true);
141 fpCommandSetLineWidth->SetDefaultValue(1.);
142
143 fpCommandSetNumberOfCloudPoints = new G4UIcmdWithAnInteger
144 ("/vis/touchable/set/numberOfCloudPoints", this);
145 fpCommandSetNumberOfCloudPoints->SetGuidance
146 ("For current touchable, set number of cloud points for cloud drawing."
147 "\n<= 0 means under control of viewer.");
148 fpCommandSetNumberOfCloudPoints->SetGuidance
149 ("Use \"/vis/set/touchable\" to set current touchable.");
150 fpCommandSetNumberOfCloudPoints->SetParameterName("numberOfCloudPoints", omitable = true);
151 fpCommandSetNumberOfCloudPoints->SetDefaultValue(0);
152
153 fpCommandSetVisibility = new G4UIcmdWithABool
154 ("/vis/touchable/set/visibility", this);
155 fpCommandSetVisibility->SetGuidance
156 ("Set visibility of current touchable: true/false.");
157 fpCommandSetVisibility->SetGuidance
158 ("Use \"/vis/set/touchable\" to set current touchable.");
159 fpCommandSetVisibility->SetParameterName("visibility", omitable = true);
160 fpCommandSetVisibility->SetDefaultValue(true);
161}
void SetDefaultValue(const char *theDefaultValue)
const G4String & ConvertToColourGuidance()