Class: Browser::Canvas::Gradient
- Includes:
- Native::Wrapper
- Defined in:
- opal/browser/canvas/gradient.rb
Instance Attribute Summary collapse
-
#context ⇒ Object
readonly
Returns the value of attribute context.
Instance Method Summary collapse
- #add(position, color) ⇒ Object
-
#initialize(context, *args, &block) ⇒ Gradient
constructor
A new instance of Gradient.
Constructor Details
permalink #initialize(context, *args, &block) ⇒ Gradient
Returns a new instance of Gradient.
9 10 11 12 13 14 15 16 17 18 19 |
# File 'opal/browser/canvas/gradient.rb', line 9 def initialize(context, *args, &block) @context = context super(case args.length when 4 then `#{@context.to_n}.createLinearGradient.apply(self, args)` when 6 then `#{@context.to_n}.createRadialGradient.apply(self, args)` else raise ArgumentError, "don't know where to dispatch" end) instance_eval(&block) end |
Instance Attribute Details
Instance Method Details
permalink #add(position, color) ⇒ Object
[View source]
21 22 23 24 25 |
# File 'opal/browser/canvas/gradient.rb', line 21 def add(position, color) `#{@context.to_n}.addColorStop(position, color)` self end |