blob: 1b062c78f969c0f0c8a4cf5865402e563748a6e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Copyright 2008 Nanorex, Inc. See LICENSE file for details.
#include "Nanorex/Interface/NXBondRenderData.h"
namespace Nanorex {
NXBondRenderData::NXBondRenderData(int const& the_order,
double const& the_length)
: order(the_order),
length(the_length)
{
}
} // Nanorex
|