blob: c28d66140e4a718ea336eb0d4800f5c9ddd5faa0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// Copyright 2005-2006 Nanorex, Inc. See LICENSE file for details.
#ifndef DYNAMICS_H_INCLUDED
#define DYNAMICS_H_INCLUDED
#define RCSID_DYNAMICS_H "$Id$"
extern void oneDynamicsFrame(struct part *part,
int iters,
struct xyz *averagePositions,
struct xyz **pOldPositions,
struct xyz **pNewPositions,
struct xyz **pPositions,
struct xyz *force);
extern void dynamicsMovie(struct part *part);
#endif
|