particle.go 393 B

1234567891011121314151617
  1. // Copyright 2016 The G3N Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. package physics
  5. // Particle represents a physics-driven particle.
  6. type Particle struct {
  7. // TODO :)
  8. }
  9. // NewParticle creates and returns a pointer to a new Particle.
  10. func NewParticle() *Particle {
  11. b := new(Particle)
  12. return b
  13. }