osb/source/core/StarPerlin.cpp

13 lines
254 B
C++
Raw Permalink Normal View History

2023-06-20 04:33:09 +00:00
#include "StarPerlin.hpp"
namespace Star {
EnumMap<PerlinType> const PerlinTypeNames{
{PerlinType::Uninitialized, "uninitialized"},
{PerlinType::Perlin, "perlin"},
{PerlinType::Billow, "billow"},
{PerlinType::RidgedMulti, "ridgedMulti"},
};
}