Module: CTioga2::Graphics::Styles::Sets

Includes:
Tioga::FigureConstants
Defined in:
lib/ctioga2/graphics/styles/sets.rb

Overview

Various arrays and hashes suitable for use with CircularArray and CurveStyleFactory

Constant Summary collapse

ColorSets =
{ 
  "default" => 
  [Red, Green, Blue, Cyan, Magenta, Orange],
  "pastel1" => 
  [MediumSeaGreen, RoyalBlue, Pumpkin, DarkChocolate, Lilac, Crimson],
  "colorblind" => 
  [BrightBlue, Goldenrod, Coral, Lilac, FireBrick, RoyalPurple],
  "gradient1" => 
  [DarkMagenta, DarkGreen, OrangeRed, DarkRed, DarkBlue ],
  "gradient2" => 
  [LightPlum, PaleGreen, Gold, RedBrown, SkyBlue ],

}
MarkerSets =
{ 
  "default" => 
  [Bullet, TriangleUp, Square, Plus, Times],
  "open" => 
  [BulletOpen, TriangleUpOpen, SquareOpen, PlusOpen, TimesOpen],
}
LineWidthSets =
{
  'default' => [1.0]
}
XAxisSets =
{
  'default' => ['x']
}
YAxisSets =
{
  'default' => ['y']
}
LineStyleSets =
{
  'default' => [ LineStyles::Solid,
                 LineStyles::Dots,
                 LineStyles::Dashes,
                 LineStyles::Small_Dots,
                 LineStyles::Dot_Long_Dash,
                 LineStyles::Dash_Dot_Dot ]
}