source: trunk/packages/vizservers/nanovis/ParticleEmitter.cpp @ 4369

Last change on this file since 4369 was 3618, checked in by ldelgass, 11 years ago

Some fixes for particle system compile (still doesn't work).

  • Property svn:eol-style set to native
File size: 401 bytes
Line 
1/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
2/*
3 * Copyright (c) 2004-2013  HUBzero Foundation, LLC
4 *
5 */
6#include "ParticleEmitter.h"
7
8using namespace nv;
9
10ParticleEmitter::ParticleEmitter() :
11    _minLifeTime(30.0f), _maxLifeTime(100.0f),
12    _maxPositionOffset(1, 1, 1),
13    _minNumOfNewParticles(10), _maxNumOfNewParticles(20)
14{
15}
16
17void ParticleEmitter::setVectorField()
18{
19}
Note: See TracBrowser for help on using the repository browser.