Exemplo n.º 1
0
void CylMesh::setCoords( const Eref& e, vector< double > v )
{
	if ( v.size() < 9 ) {
		cout << "CylMesh::setCoords: Warning: size of argument vec should be >= 9, was " << v.size() << endl;
	}
	innerSetCoords( e, v );
	transmitChange( e );
}
Exemplo n.º 2
0
void CubeMesh::setCoords( const Eref& e, vector< double > v)
{
	double oldVol = getMeshEntryVolume( 0 );
	innerSetCoords( v );
	transmitChange( e, oldVol );
}
Exemplo n.º 3
0
void CubeMesh::setCoords( const Eref& e, vector< double > v)
{
	// double oldVol = getMeshEntryVolume( 0 );
	innerSetCoords( v );
	ChemCompt::voxelVolOut()->send( e, vGetVoxelVolume() );
}