Returns the user-supplied (via setOptions) or default multiplication symbol (middot)
()
| 3069 | |
| 3070 | /** Returns the user-supplied (via setOptions) or default multiplication symbol (middot) */ |
| 3071 | @AstroImageJ(reason = "Access widen for Vector Plot saving", modified = true) |
| 3072 | public String getMultiplySymbol() { |
| 3073 | String multiplySymbol = Tools.getStringFromList(pp.frame.options, "msymbol="); |
| 3074 | if (multiplySymbol==null) |
| 3075 | multiplySymbol = Tools.getStringFromList(pp.frame.options, "multiplysymbol="); |
| 3076 | return multiplySymbol != null ? multiplySymbol : MULTIPLY_SYMBOL; |
| 3077 | } |
| 3078 | |
| 3079 | //Returns a pixelMap containting labelStr. |
| 3080 | //Uses font of current ImageProcessor. |
no test coverage detected