public void FixedUpdate(Matrix View, Matrix Projection) { Lattice.FixedUpdate( ); LatticePointControl.Update(Device, View, Projection); for (int i = 0; i < LatticePoint.Count; i++) { var point = LatticePoint[i]; point.Position = Lattice.LatticeData[i].Value.Position; point.DrawAllSubSet(View, Projection); } }