Sha256: 5d8f7117ec219d7c1ab99b19aed4efd4b894421873ab803919a7beb5bbe3b0d5
Contents?: true
Size: 1.32 KB
Versions: 4
Compression:
Stored size: 1.32 KB
Contents
# frozen_string_literal: true require_relative "unary_function" module Plurimath module Math module Function class Sqrt < UnaryFunction attr_accessor :options def to_mathml_without_math_tag(intent) Utility.update_nodes( ox_element("msqrt"), Array(parameter_one&.to_mathml_without_math_tag(intent)), ) end def to_omml_without_math_tag(display_style) rad_element = Utility.ox_element("rad", namespace: "m") pr_element = Utility.ox_element("radPr", namespace: "m") pr_element << Utility.ox_element( "degHide", namespace: "m", attributes: { "m:val": "on" }, ) Utility.update_nodes( rad_element, [ (pr_element << Utility.pr_element("ctrl", true, namespace: "m")), Utility.ox_element("deg", namespace: "m"), omml_parameter(parameter_one, display_style, tag_name: "e"), ], ) [rad_element] end def line_breaking(obj) parameter_one&.line_breaking(obj) obj.update(Utility.filter_values(obj.value)) if obj.value_exist? end def to_unicodemath "√#{unicodemath_parens(parameter_one)}" end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems