示例#1
0
void LDExporter::loadSettings(void)
{
	m_primSub = boolForKey("PrimitiveSubstitution", true);
	m_seamWidth = floatForKey("SeamWidth", 0.5);
	m_edges = boolForKey("Edges", false);
	m_conditionalEdges = boolForKey("ConditionalEdges", false);
}
示例#2
0
void LD3dsExporter::loadSettings(void)
{
	LDExporter::loadSettings();
	m_seams = boolForKey("Seams", true);
	m_seamWidth = floatForKey("SeamWidth", 0.5);
	//m_includeCamera = boolForKey("IncludeCamera", true);
}
示例#3
0
文件: Product.cpp 项目: unixo/SENG
/**
   @brief Return the price
 
   @return A float representing the price
 */
float Product::getPrice()
{
    return floatForKey(KEY_PRD_PRICE);
}