minor: remove mono compile warning, a Vector3 can never be null since it's a struct
							parent
							
								
									7987a6da95
								
							
						
					
					
						commit
						7562e63ae6
					
				|  | @ -171,16 +171,13 @@ namespace OpenSim.Region.Physics.Meshing | |||
| 
 | ||||
|             foreach (Vector3 v in meshIn.getVertexList()) | ||||
|             { | ||||
|                 if (v != null) | ||||
|                 { | ||||
|                     if (v.X < minX) minX = v.X; | ||||
|                     if (v.Y < minY) minY = v.Y; | ||||
|                     if (v.Z < minZ) minZ = v.Z; | ||||
|                 if (v.X < minX) minX = v.X; | ||||
|                 if (v.Y < minY) minY = v.Y; | ||||
|                 if (v.Z < minZ) minZ = v.Z; | ||||
| 
 | ||||
|                     if (v.X > maxX) maxX = v.X; | ||||
|                     if (v.Y > maxY) maxY = v.Y; | ||||
|                     if (v.Z > maxZ) maxZ = v.Z; | ||||
|                 } | ||||
|                 if (v.X > maxX) maxX = v.X; | ||||
|                 if (v.Y > maxY) maxY = v.Y; | ||||
|                 if (v.Z > maxZ) maxZ = v.Z; | ||||
|             } | ||||
| 
 | ||||
|             return CreateSimpleBoxMesh(minX, maxX, minY, maxY, minZ, maxZ); | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue
	
	 Justin Clark-Casey (justincc)
						Justin Clark-Casey (justincc)