├── .gitattributes ├── .gitignore ├── .idea └── gradle.xml ├── AndroidMath.iml ├── INTERNAL.md ├── LICENSE ├── README.md ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── img └── phonescreen.png ├── mathdisplaylib ├── .gitignore ├── bootstrap │ └── wrapper │ │ └── bootstrap.jar ├── build.gradle ├── cdep ├── cdep.bat ├── cdep.sha256 ├── cdep.yml ├── doc │ ├── alltypes │ │ └── index.html │ ├── com.agog.mathdisplay.parse │ │ ├── -m-t-accent │ │ │ ├── -init-.html │ │ │ ├── copy-deep.html │ │ │ ├── finalized.html │ │ │ ├── index.html │ │ │ ├── inner-list.html │ │ │ └── to-latex-string.html │ │ ├── -m-t-column-alignment │ │ │ ├── -k-m-t-column-alignment-center.html │ │ │ ├── -k-m-t-column-alignment-left.html │ │ │ ├── -k-m-t-column-alignment-right.html │ │ │ └── index.html │ │ ├── -m-t-env-properties │ │ │ ├── -init-.html │ │ │ ├── ended.html │ │ │ ├── env-name.html │ │ │ ├── index.html │ │ │ └── num-rows.html │ │ ├── -m-t-font-style │ │ │ ├── -k-m-t-font-style-blackboard.html │ │ │ ├── -k-m-t-font-style-bold-italic.html │ │ │ ├── -k-m-t-font-style-bold.html │ │ │ ├── -k-m-t-font-style-caligraphic.html │ │ │ ├── -k-m-t-font-style-default.html │ │ │ ├── -k-m-t-font-style-fraktur.html │ │ │ ├── -k-m-t-font-style-italic.html │ │ │ ├── -k-m-t-font-style-roman.html │ │ │ ├── -k-m-t-font-style-sans-serif.html │ │ │ ├── -k-m-t-font-style-typewriter.html │ │ │ └── index.html │ │ ├── -m-t-fraction │ │ │ ├── -init-.html │ │ │ ├── copy-deep.html │ │ │ ├── denominator.html │ │ │ ├── finalized.html │ │ │ ├── has-rule.html │ │ │ ├── index.html │ │ │ ├── left-delimiter.html │ │ │ ├── numerator.html │ │ │ ├── right-delimiter.html │ │ │ └── to-latex-string.html │ │ ├── -m-t-inner │ │ │ ├── -init-.html │ │ │ ├── copy-deep.html │ │ │ ├── finalized.html │ │ │ ├── index.html │ │ │ ├── inner-list.html │ │ │ ├── left-boundary.html │ │ │ ├── right-boundary.html │ │ │ └── to-latex-string.html │ │ ├── -m-t-large-operator │ │ │ ├── -init-.html │ │ │ ├── copy-deep.html │ │ │ ├── has-limits.html │ │ │ └── index.html │ │ ├── -m-t-line-style │ │ │ ├── -k-m-t-line-style-display.html │ │ │ ├── -k-m-t-line-style-script-script.html │ │ │ ├── -k-m-t-line-style-script.html │ │ │ ├── -k-m-t-line-style-text.html │ │ │ └── index.html │ │ ├── -m-t-math-atom-factory │ │ │ ├── -init-.html │ │ │ ├── accent-name.html │ │ │ ├── accent-with-name.html │ │ │ ├── add-latex-symbol.html │ │ │ ├── aliases.html │ │ │ ├── atom-for-latex-symbol-name.html │ │ │ ├── boundary-atom-for-delimiter-name.html │ │ │ ├── delimiter-name-for-boundary-atom.html │ │ │ ├── font-name-for-style.html │ │ │ ├── font-style-with-name.html │ │ │ ├── fraction-with-numerator.html │ │ │ ├── index.html │ │ │ ├── latex-symbol-name-for-atom.html │ │ │ ├── math-list-for-characters.html │ │ │ ├── operator-with-name.html │ │ │ ├── supported-latex-symbol-names.html │ │ │ ├── table-with-environment.html │ │ │ └── times.html │ │ ├── -m-t-math-atom-type │ │ │ ├── -k-m-t-math-atom-accent.html │ │ │ ├── -k-m-t-math-atom-binary-operator.html │ │ │ ├── -k-m-t-math-atom-boundary.html │ │ │ ├── -k-m-t-math-atom-close.html │ │ │ ├── -k-m-t-math-atom-color.html │ │ │ ├── -k-m-t-math-atom-fraction.html │ │ │ ├── -k-m-t-math-atom-inner.html │ │ │ ├── -k-m-t-math-atom-large-operator.html │ │ │ ├── -k-m-t-math-atom-none.html │ │ │ ├── -k-m-t-math-atom-number.html │ │ │ ├── -k-m-t-math-atom-open.html │ │ │ ├── -k-m-t-math-atom-ordinary.html │ │ │ ├── -k-m-t-math-atom-overline.html │ │ │ ├── -k-m-t-math-atom-placeholder.html │ │ │ ├── -k-m-t-math-atom-punctuation.html │ │ │ ├── -k-m-t-math-atom-radical.html │ │ │ ├── -k-m-t-math-atom-relation.html │ │ │ ├── -k-m-t-math-atom-space.html │ │ │ ├── -k-m-t-math-atom-style.html │ │ │ ├── -k-m-t-math-atom-table.html │ │ │ ├── -k-m-t-math-atom-unary-operator.html │ │ │ ├── -k-m-t-math-atom-underline.html │ │ │ ├── -k-m-t-math-atom-variable.html │ │ │ └── index.html │ │ ├── -m-t-math-atom │ │ │ ├── -init-.html │ │ │ ├── atom-for-character.html │ │ │ ├── atom-with-type.html │ │ │ ├── copy-deep-content.html │ │ │ ├── copy-deep.html │ │ │ ├── description.html │ │ │ ├── finalized.html │ │ │ ├── font-style.html │ │ │ ├── fuse.html │ │ │ ├── fused-atoms.html │ │ │ ├── index-range.html │ │ │ ├── index.html │ │ │ ├── is-not-binary-operator.html │ │ │ ├── nucleus.html │ │ │ ├── scripts-allowed.html │ │ │ ├── sub-script.html │ │ │ ├── super-script.html │ │ │ ├── to-latex-string.html │ │ │ ├── to-string-subs.html │ │ │ ├── type-to-text.html │ │ │ └── type.html │ │ ├── -m-t-math-color │ │ │ ├── -init-.html │ │ │ ├── color-string.html │ │ │ ├── copy-deep.html │ │ │ ├── finalized.html │ │ │ ├── index.html │ │ │ ├── inner-list.html │ │ │ └── to-latex-string.html │ │ ├── -m-t-math-list-builder │ │ │ ├── -init-.html │ │ │ ├── build-from-string.html │ │ │ ├── build.html │ │ │ ├── copy-error.html │ │ │ ├── error-active.html │ │ │ ├── index.html │ │ │ └── to-latex-string.html │ │ ├── -m-t-math-list │ │ │ ├── -init-.html │ │ │ ├── add-atom.html │ │ │ ├── append.html │ │ │ ├── atoms.html │ │ │ ├── copy-deep.html │ │ │ ├── description.html │ │ │ ├── finalized.html │ │ │ ├── index.html │ │ │ ├── insert-atom.html │ │ │ └── to-string.html │ │ ├── -m-t-math-space │ │ │ ├── -init-.html │ │ │ ├── copy-deep.html │ │ │ ├── index.html │ │ │ └── space.html │ │ ├── -m-t-math-style │ │ │ ├── -init-.html │ │ │ ├── copy-deep.html │ │ │ ├── index.html │ │ │ └── style.html │ │ ├── -m-t-math-table │ │ │ ├── -init-.html │ │ │ ├── cells.html │ │ │ ├── copy-deep.html │ │ │ ├── environment.html │ │ │ ├── finalized.html │ │ │ ├── get-alignment-for-column.html │ │ │ ├── index.html │ │ │ ├── inter-column-spacing.html │ │ │ ├── inter-row-additional-spacing.html │ │ │ ├── num-columns.html │ │ │ ├── num-rows.html │ │ │ ├── set-alignment.html │ │ │ └── set-cell.html │ │ ├── -m-t-over-line │ │ │ ├── -init-.html │ │ │ ├── copy-deep.html │ │ │ ├── finalized.html │ │ │ ├── index.html │ │ │ ├── inner-list.html │ │ │ └── to-latex-string.html │ │ ├── -m-t-parse-error │ │ │ ├── -init-.html │ │ │ ├── clear.html │ │ │ ├── copy-from.html │ │ │ ├── errorcode.html │ │ │ ├── errordesc.html │ │ │ └── index.html │ │ ├── -m-t-parse-errors │ │ │ ├── -character-not-found.html │ │ │ ├── -error-none.html │ │ │ ├── -internal-error.html │ │ │ ├── -invalid-command.html │ │ │ ├── -invalid-delimiter.html │ │ │ ├── -invalid-env.html │ │ │ ├── -invalid-limits.html │ │ │ ├── -invalid-num-columns.html │ │ │ ├── -mismatch-braces.html │ │ │ ├── -missing-begin.html │ │ │ ├── -missing-delimiter.html │ │ │ ├── -missing-end.html │ │ │ ├── -missing-env.html │ │ │ ├── -missing-left.html │ │ │ ├── -missing-right.html │ │ │ └── index.html │ │ ├── -m-t-radical │ │ │ ├── -init-.html │ │ │ ├── copy-deep.html │ │ │ ├── degree.html │ │ │ ├── finalized.html │ │ │ ├── index.html │ │ │ ├── radicand.html │ │ │ └── to-latex-string.html │ │ ├── -m-t-under-line │ │ │ ├── -init-.html │ │ │ ├── copy-deep.html │ │ │ ├── finalized.html │ │ │ ├── index.html │ │ │ ├── inner-list.html │ │ │ └── to-latex-string.html │ │ ├── -math-display-exception │ │ │ ├── -init-.html │ │ │ ├── index.html │ │ │ └── message.html │ │ ├── -n-s-not-found.html │ │ ├── -n-s-range │ │ │ ├── -init-.html │ │ │ ├── equal.html │ │ │ ├── index.html │ │ │ ├── length.html │ │ │ ├── location.html │ │ │ ├── maxrange.html │ │ │ └── union.html │ │ └── index.html │ ├── com.agog.mathdisplay.render │ │ ├── -bounding-box │ │ │ ├── -init-.html │ │ │ ├── contains.html │ │ │ ├── height.html │ │ │ ├── index.html │ │ │ ├── lower-left-x.html │ │ │ ├── lower-left-y.html │ │ │ ├── to-string.html │ │ │ ├── upper-right-x.html │ │ │ ├── upper-right-y.html │ │ │ └── width.html │ │ ├── -c-g-glyph │ │ │ ├── -init-.html │ │ │ ├── gid.html │ │ │ ├── glyph-ascent.html │ │ │ ├── glyph-descent.html │ │ │ ├── glyph-width.html │ │ │ ├── index.html │ │ │ └── is-valid.html │ │ ├── -c-g-point │ │ │ ├── -init-.html │ │ │ ├── index.html │ │ │ ├── x.html │ │ │ └── y.html │ │ ├── -c-g-rect │ │ │ ├── -init-.html │ │ │ ├── height.html │ │ │ ├── index.html │ │ │ ├── width.html │ │ │ ├── x.html │ │ │ └── y.html │ │ ├── -d-e-b-u-g.html │ │ ├── -m-t-accent-display │ │ │ ├── -init-.html │ │ │ ├── accent.html │ │ │ ├── accentee.html │ │ │ ├── color-changed.html │ │ │ ├── draw.html │ │ │ ├── index.html │ │ │ ├── position-changed.html │ │ │ └── update-accentee-position.html │ │ ├── -m-t-c-t-line-display │ │ │ ├── -init-.html │ │ │ ├── atoms.html │ │ │ ├── compute-dimensions.html │ │ │ ├── draw.html │ │ │ ├── font.html │ │ │ ├── index.html │ │ │ └── str.html │ │ ├── -m-t-codepoint-char │ │ │ ├── -init-.html │ │ │ ├── codepoint.html │ │ │ ├── index.html │ │ │ └── to-unicode-string.html │ │ ├── -m-t-display │ │ │ ├── -init-.html │ │ │ ├── ascent.html │ │ │ ├── color-changed.html │ │ │ ├── descent.html │ │ │ ├── display-bounds.html │ │ │ ├── draw.html │ │ │ ├── has-script.html │ │ │ ├── index.html │ │ │ ├── local-text-color.html │ │ │ ├── position-changed.html │ │ │ ├── position.html │ │ │ ├── range.html │ │ │ ├── shift-down.html │ │ │ ├── text-color.html │ │ │ └── width.html │ │ ├── -m-t-draw-free-type │ │ │ ├── -init-.html │ │ │ ├── draw-glyph.html │ │ │ ├── index.html │ │ │ └── mathfont.html │ │ ├── -m-t-font-math-table │ │ │ ├── -init-.html │ │ │ ├── accent-base-height.html │ │ │ ├── axis-height.html │ │ │ ├── check-font-size.html │ │ │ ├── constant-from-table.html │ │ │ ├── copy-font-table-with-size.html │ │ │ ├── delimited-sub-formula-min-height.html │ │ │ ├── display-operator-min-height.html │ │ │ ├── flattened-accent-base-height.html │ │ │ ├── font-size.html │ │ │ ├── font-units-box.html │ │ │ ├── font.html │ │ │ ├── fraction-delimiter-display-style-size.html │ │ │ ├── fraction-delimiter-size.html │ │ │ ├── fraction-denominator-display-style-gap-min.html │ │ │ ├── fraction-denominator-display-style-shift-down.html │ │ │ ├── fraction-denominator-gap-min.html │ │ │ ├── fraction-denominator-shift-down.html │ │ │ ├── fraction-numerator-display-style-gap-min.html │ │ │ ├── fraction-numerator-display-style-shift-up.html │ │ │ ├── fraction-numerator-gap-min.html │ │ │ ├── fraction-numerator-shift-up.html │ │ │ ├── fraction-rule-thickness.html │ │ │ ├── free-type-math-table.html │ │ │ ├── freeface.html │ │ │ ├── get-advances-for-glyphs.html │ │ │ ├── get-bounding-rects-for-glyphs.html │ │ │ ├── get-glyph-for-codepoint.html │ │ │ ├── get-glyph-name.html │ │ │ ├── get-glyph-with-name.html │ │ │ ├── get-horizontal-variants-for-glyph.html │ │ │ ├── get-italic-correction.html │ │ │ ├── get-larger-glyph.html │ │ │ ├── get-top-accent-adjustment.html │ │ │ ├── get-vertical-glyph-assembly-for-glyph.html │ │ │ ├── get-vertical-variants-for-glyph.html │ │ │ ├── index.html │ │ │ ├── istreamotf.html │ │ │ ├── limit-extra-ascender-descender.html │ │ │ ├── lower-limit-baseline-drop-min.html │ │ │ ├── lower-limit-gap-min.html │ │ │ ├── math-leading.html │ │ │ ├── min-connector-overlap.html │ │ │ ├── mu-unit.html │ │ │ ├── overbar-extra-ascender.html │ │ │ ├── overbar-rule-thickness.html │ │ │ ├── overbar-vertical-gap.html │ │ │ ├── percent-from-table.html │ │ │ ├── radical-degree-bottom-raise-percent.html │ │ │ ├── radical-display-style-vertical-gap.html │ │ │ ├── radical-extra-ascender.html │ │ │ ├── radical-kern-after-degree.html │ │ │ ├── radical-kern-before-degree.html │ │ │ ├── radical-rule-thickness.html │ │ │ ├── radical-vertical-gap.html │ │ │ ├── script-scale-down.html │ │ │ ├── script-script-scale-down.html │ │ │ ├── skewed-fraction-horizontal-gap.html │ │ │ ├── skewed-fraction-vertical-gap.html │ │ │ ├── space-after-script.html │ │ │ ├── stack-bottom-display-style-shift-down.html │ │ │ ├── stack-bottom-shift-down.html │ │ │ ├── stack-display-style-gap-min.html │ │ │ ├── stack-gap-min.html │ │ │ ├── stack-top-display-style-shift-up.html │ │ │ ├── stack-top-shift-up.html │ │ │ ├── stretch-stack-bottom-shift-down.html │ │ │ ├── stretch-stack-gap-above-min.html │ │ │ ├── stretch-stack-gap-below-min.html │ │ │ ├── stretch-stack-top-shift-up.html │ │ │ ├── sub-superscript-gap-min.html │ │ │ ├── subscript-baseline-drop-min.html │ │ │ ├── subscript-shift-down.html │ │ │ ├── subscript-top-max.html │ │ │ ├── superscript-baseline-drop-max.html │ │ │ ├── superscript-bottom-max-with-subscript.html │ │ │ ├── superscript-bottom-min.html │ │ │ ├── superscript-shift-up-cramped.html │ │ │ ├── superscript-shift-up.html │ │ │ ├── underbar-extra-descender.html │ │ │ ├── underbar-rule-thickness.html │ │ │ ├── underbar-vertical-gap.html │ │ │ ├── union-bounds.html │ │ │ ├── units-per-em.html │ │ │ ├── upper-limit-baseline-rise-min.html │ │ │ └── upper-limit-gap-min.html │ │ ├── -m-t-font │ │ │ ├── -init-.html │ │ │ ├── copy-font-with-size.html │ │ │ ├── find-glyph-for-character-at-index.html │ │ │ ├── font-size.html │ │ │ ├── get-gid-list-for-string.html │ │ │ ├── get-glyph-name.html │ │ │ ├── get-glyph-with-name.html │ │ │ ├── index.html │ │ │ ├── math-table.html │ │ │ └── name.html │ │ ├── -m-t-fraction-display │ │ │ ├── -init-.html │ │ │ ├── ascent.html │ │ │ ├── color-changed.html │ │ │ ├── denominator-down.html │ │ │ ├── denominator.html │ │ │ ├── descent.html │ │ │ ├── draw.html │ │ │ ├── index.html │ │ │ ├── line-position.html │ │ │ ├── line-thickness.html │ │ │ ├── numerator-up.html │ │ │ ├── numerator.html │ │ │ ├── position-changed.html │ │ │ ├── update-denominator-position.html │ │ │ ├── update-numerator-position.html │ │ │ └── width.html │ │ ├── -m-t-glyph-construction-display │ │ │ ├── -init-.html │ │ │ ├── ascent.html │ │ │ ├── descent.html │ │ │ ├── draw.html │ │ │ ├── glyphs.html │ │ │ ├── index.html │ │ │ ├── myfont.html │ │ │ └── offsets.html │ │ ├── -m-t-glyph-display │ │ │ ├── -init-.html │ │ │ ├── ascent.html │ │ │ ├── descent.html │ │ │ ├── draw.html │ │ │ ├── glyph.html │ │ │ ├── index.html │ │ │ └── myfont.html │ │ ├── -m-t-glyph-part │ │ │ ├── -init-.html │ │ │ ├── end-connector-length.html │ │ │ ├── full-advance.html │ │ │ ├── glyph.html │ │ │ ├── index.html │ │ │ ├── is-extender.html │ │ │ └── start-connector-length.html │ │ ├── -m-t-inter-element-space-type │ │ │ ├── index.html │ │ │ ├── k-m-t-space-invalid.html │ │ │ ├── k-m-t-space-n-s-medium.html │ │ │ ├── k-m-t-space-n-s-thick.html │ │ │ ├── k-m-t-space-n-s-thin.html │ │ │ ├── k-m-t-space-none.html │ │ │ └── k-m-t-space-thin.html │ │ ├── -m-t-large-op-limits-display │ │ │ ├── -init-.html │ │ │ ├── ascent.html │ │ │ ├── color-changed.html │ │ │ ├── descent.html │ │ │ ├── draw.html │ │ │ ├── extra-padding.html │ │ │ ├── index.html │ │ │ ├── limit-shift.html │ │ │ ├── lower-limit-gap.html │ │ │ ├── lower-limit.html │ │ │ ├── nucleus.html │ │ │ ├── position-changed.html │ │ │ ├── update-lower-limit-position.html │ │ │ ├── update-nucleus-position.html │ │ │ ├── update-upper-limit-position.html │ │ │ ├── upper-limit-gap.html │ │ │ └── upper-limit.html │ │ ├── -m-t-line-display │ │ │ ├── -init-.html │ │ │ ├── color-changed.html │ │ │ ├── draw.html │ │ │ ├── index.html │ │ │ ├── inner.html │ │ │ ├── line-shift-up.html │ │ │ ├── line-thickness.html │ │ │ ├── position-changed.html │ │ │ └── update-inner-position.html │ │ ├── -m-t-line-position │ │ │ ├── index.html │ │ │ ├── k-m-t-line-position-regular.html │ │ │ ├── k-m-t-line-position-subscript.html │ │ │ └── k-m-t-line-position-superscript.html │ │ ├── -m-t-math-list-display │ │ │ ├── --index--.html │ │ │ ├── -init-.html │ │ │ ├── color-changed.html │ │ │ ├── draw.html │ │ │ ├── index.html │ │ │ ├── recompute-dimensions.html │ │ │ ├── sub-displays.html │ │ │ └── type.html │ │ ├── -m-t-radical-display │ │ │ ├── -init-.html │ │ │ ├── color-changed.html │ │ │ ├── degree.html │ │ │ ├── draw.html │ │ │ ├── index.html │ │ │ ├── line-thickness.html │ │ │ ├── position-changed.html │ │ │ ├── radical-glyph.html │ │ │ ├── radical-shift.html │ │ │ ├── radicand.html │ │ │ ├── set-degree.html │ │ │ ├── top-kern.html │ │ │ └── update-radicand-position.html │ │ ├── -m-t-typesetter │ │ │ ├── -init-.html │ │ │ ├── cramped.html │ │ │ ├── create-line-for-math-list.html │ │ │ ├── current-atoms.html │ │ │ ├── current-line-index-range.html │ │ │ ├── current-line.html │ │ │ ├── current-position.html │ │ │ ├── denominator-gap-min.html │ │ │ ├── denominator-shift-down.html │ │ │ ├── display-atoms.html │ │ │ ├── font.html │ │ │ ├── fraction-delimiter-height.html │ │ │ ├── index.html │ │ │ ├── numerator-gap-min.html │ │ │ ├── numerator-shift-up.html │ │ │ ├── preprocess-math-list.html │ │ │ ├── spaced.html │ │ │ ├── stack-gap-min.html │ │ │ ├── style-font.html │ │ │ └── style.html │ │ ├── change-font.html │ │ ├── get-blackboard.html │ │ ├── get-bold-italic.html │ │ ├── get-bold.html │ │ ├── get-caligraphic.html │ │ ├── get-default-style.html │ │ ├── get-fraktur.html │ │ ├── get-inter-element-space-array-index-for-type.html │ │ ├── get-italicized.html │ │ ├── get-sans-serif.html │ │ ├── get-typewriter.html │ │ ├── greek-symbol-order.html │ │ ├── index.html │ │ ├── inter-element-space-array.html │ │ ├── is_-c-a-p-i-t-a-l_-g-r-e-e-k.html │ │ ├── is_-g-r-e-e-k_-s-y-m-b-o-l.html │ │ ├── is_-l-o-w-e-r_-e-n.html │ │ ├── is_-l-o-w-e-r_-g-r-e-e-k.html │ │ ├── is_-n-u-m-b-e-r.html │ │ ├── is_-u-p-p-e-r_-e-n.html │ │ ├── k-base-line-skip-multiplier.html │ │ ├── k-delimiter-factor.html │ │ ├── k-delimiter-shortfall-points.html │ │ ├── k-jot-multiplier.html │ │ ├── k-line-skip-limit-multiplier.html │ │ ├── k-line-skip-multiplier.html │ │ ├── k-m-t-unicode-greek-capital-bold-italic-start.html │ │ ├── k-m-t-unicode-greek-capital-bold-start.html │ │ ├── k-m-t-unicode-greek-capital-end.html │ │ ├── k-m-t-unicode-greek-capital-italic-start.html │ │ ├── k-m-t-unicode-greek-capital-start.html │ │ ├── k-m-t-unicode-greek-lower-bold-italic-start.html │ │ ├── k-m-t-unicode-greek-lower-bold-start.html │ │ ├── k-m-t-unicode-greek-lower-end.html │ │ ├── k-m-t-unicode-greek-lower-italic-start.html │ │ ├── k-m-t-unicode-greek-lower-start.html │ │ ├── k-m-t-unicode-greek-symbol-bold-italic-start.html │ │ ├── k-m-t-unicode-greek-symbol-bold-start.html │ │ ├── k-m-t-unicode-greek-symbol-italic-start.html │ │ ├── k-m-t-unicode-math-capital-blackboard-start.html │ │ ├── k-m-t-unicode-math-capital-bold-italic-start.html │ │ ├── k-m-t-unicode-math-capital-bold-start.html │ │ ├── k-m-t-unicode-math-capital-fraktur-start.html │ │ ├── k-m-t-unicode-math-capital-italic-start.html │ │ ├── k-m-t-unicode-math-capital-sans-serif-start.html │ │ ├── k-m-t-unicode-math-capital-script-start.html │ │ ├── k-m-t-unicode-math-capital-t-t-start.html │ │ ├── k-m-t-unicode-math-lower-blackboard-start.html │ │ ├── k-m-t-unicode-math-lower-bold-italic-start.html │ │ ├── k-m-t-unicode-math-lower-bold-start.html │ │ ├── k-m-t-unicode-math-lower-fraktur-start.html │ │ ├── k-m-t-unicode-math-lower-italic-start.html │ │ ├── k-m-t-unicode-math-lower-sans-serif-start.html │ │ ├── k-m-t-unicode-math-lower-t-t-start.html │ │ ├── k-m-t-unicode-number-blackboard-start.html │ │ ├── k-m-t-unicode-number-bold-start.html │ │ ├── k-m-t-unicode-number-sans-serif-start.html │ │ ├── k-m-t-unicode-number-t-t-start.html │ │ ├── k-m-t-unicode-planks-constant.html │ │ ├── number-of-glyphs.html │ │ └── style-character.html │ ├── com.agog.mathdisplay │ │ ├── -k-default-font-size.html │ │ ├── -m-t-font-manager │ │ │ ├── -init-.html │ │ │ ├── assets.html │ │ │ ├── default-font.html │ │ │ ├── font-with-name.html │ │ │ ├── index.html │ │ │ ├── latin-modern-font-with-size.html │ │ │ ├── name-to-font-map.html │ │ │ ├── set-context.html │ │ │ ├── termes-font-with-size.html │ │ │ └── xits-font-with-size.html │ │ ├── -m-t-math-u-i-label-mode │ │ │ ├── -k-m-t-math-u-i-label-mode-display.html │ │ │ ├── -k-m-t-math-u-i-label-mode-text.html │ │ │ └── index.html │ │ ├── -m-t-math-view │ │ │ ├── -init-.html │ │ │ ├── -m-t-math-u-i-label-mode │ │ │ │ ├── -k-m-t-math-u-i-label-mode-display.html │ │ │ │ ├── -k-m-t-math-u-i-label-mode-text.html │ │ │ │ └── index.html │ │ │ ├── -m-t-math-view-mode │ │ │ │ ├── -k-m-t-math-view-mode-display.html │ │ │ │ ├── -k-m-t-math-view-mode-text.html │ │ │ │ └── index.html │ │ │ ├── -m-t-text-alignment │ │ │ │ ├── -k-m-t-text-alignment-center.html │ │ │ │ ├── -k-m-t-text-alignment-left.html │ │ │ │ ├── -k-m-t-text-alignment-right.html │ │ │ │ └── index.html │ │ │ ├── convert-dp-to-pixel.html │ │ │ ├── current-style.html │ │ │ ├── display-error-inline.html │ │ │ ├── error-font-size.html │ │ │ ├── font-size.html │ │ │ ├── font.html │ │ │ ├── index.html │ │ │ ├── label-mode.html │ │ │ ├── last-error.html │ │ │ ├── latex.html │ │ │ ├── math-list.html │ │ │ ├── on-draw.html │ │ │ ├── on-measure.html │ │ │ ├── text-alignment.html │ │ │ └── text-color.html │ │ ├── -m-t-text-alignment │ │ │ ├── -k-m-t-text-alignment-center.html │ │ │ ├── -k-m-t-text-alignment-left.html │ │ │ ├── -k-m-t-text-alignment-right.html │ │ │ └── index.html │ │ ├── index.html │ │ └── k-default-font-size.html │ ├── index-outline.html │ ├── index.html │ └── style.css ├── mathdisplaylib.iml ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── agog │ │ └── mathdisplay │ │ ├── DrawInstrumentedTest.kt │ │ ├── FontInstrumentedTest.kt │ │ ├── TypesetterInstrumentedTest.kt │ │ └── ViewInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ └── fonts │ │ │ ├── GUST-FONT-LICENSE.txt │ │ │ ├── OFL.txt │ │ │ ├── README-Latin-Modern-Math.txt │ │ │ ├── README-TeX-Gyre-Termes-Math.txt │ │ │ ├── latinmodern-math.otf │ │ │ ├── texgyretermes-math.otf │ │ │ └── xits-math.otf │ ├── cpp │ │ ├── CMakeLists.txt │ │ ├── com_pvporbit_freetype_FreeType.h │ │ ├── com_pvporbit_freetype_Utils.h │ │ └── freetype_jni.cpp │ ├── java │ │ └── com │ │ │ ├── agog │ │ │ └── mathdisplay │ │ │ │ ├── MTFontManager.kt │ │ │ │ ├── MTMathView.kt │ │ │ │ ├── parse │ │ │ │ ├── MTMathAtom.kt │ │ │ │ ├── MTMathAtomFactory.kt │ │ │ │ ├── MTMathList.kt │ │ │ │ ├── MTMathListBuilder.kt │ │ │ │ ├── MTMathTable.kt │ │ │ │ └── MTParseError.kt │ │ │ │ └── render │ │ │ │ ├── MTCharset.kt │ │ │ │ ├── MTDrawFreeType.kt │ │ │ │ ├── MTFont.kt │ │ │ │ ├── MTFontMathTable.kt │ │ │ │ ├── MTMathListDisplay.kt │ │ │ │ ├── MTSpacing.kt │ │ │ │ └── MTTypesetter.kt │ │ │ └── pvporbit │ │ │ └── freetype │ │ │ ├── Bitmap.java │ │ │ ├── CharMap.java │ │ │ ├── Face.java │ │ │ ├── FreeType.java │ │ │ ├── FreeTypeConstants.java │ │ │ ├── GlyphMetrics.java │ │ │ ├── GlyphSlot.java │ │ │ ├── Kerning.java │ │ │ ├── Library.java │ │ │ ├── LibraryVersion.java │ │ │ ├── MTFreeTypeMathTable.kt │ │ │ ├── Size.java │ │ │ ├── SizeMetrics.java │ │ │ ├── SizeRequest.java │ │ │ └── Utils.java │ ├── jni │ │ └── com_pvporbit_freetype_FreeType.h │ └── res │ │ └── values │ │ └── strings.xml │ └── test │ └── java │ └── com │ └── agog │ └── mathdisplay │ └── BuilderUnitTest.kt ├── sampleapp ├── .gitignore ├── build.gradle ├── proguard-rules.pro ├── sampleapp.iml └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── agog │ │ └── latexmathsample │ │ └── MainActivity.kt │ └── res │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ └── ic_launcher_background.xml │ ├── layout │ ├── activity_main.xml │ └── content_main.xml │ ├── menu │ └── menu_main.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ ├── ic_launcher_round.png │ └── icon.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ ├── ic_launcher_round.png │ └── icon.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ ├── ic_launcher_round.png │ └── icon.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ ├── ic_launcher_round.png │ └── icon.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ ├── ic_launcher_round.png │ └── icon.png │ ├── raw │ └── samples.txt │ └── values │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml └── settings.gradle /.gitattributes: -------------------------------------------------------------------------------- 1 | **/doc/** linguist-vendored 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregcockroft/AndroidMath/5e0f60bac9daaefbab7df96f4501c0209700418b/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | -------------------------------------------------------------------------------- /img/phonescreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregcockroft/AndroidMath/5e0f60bac9daaefbab7df96f4501c0209700418b/img/phonescreen.png -------------------------------------------------------------------------------- /mathdisplaylib/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | .cdep 3 | .externalNativeBuild 4 | -------------------------------------------------------------------------------- /mathdisplaylib/bootstrap/wrapper/bootstrap.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregcockroft/AndroidMath/5e0f60bac9daaefbab7df96f4501c0209700418b/mathdisplaylib/bootstrap/wrapper/bootstrap.jar -------------------------------------------------------------------------------- /mathdisplaylib/cdep.sha256: -------------------------------------------------------------------------------- 1 | # This file is automatically maintained by CDep. 2 | # 3 | # MANUAL EDITS WILL BE LOST ON THE NEXT CDEP RUN 4 | # 5 | # This file contains a list of CDep coordinates along with the SHA256 hash of their 6 | # manifest file. This is to ensure that a manifest hasn't changed since the last 7 | # time CDep ran. 8 | # The recommended best practice is to check this file into source control so that 9 | # anyone else who builds this project is guaranteed to get the same dependencies. 10 | 11 | - coordinate: com.github.jomof:freetype:2.6.2-rev14 12 | sha256: 4adc3c5302d6bd2d9b0374812c7d4206295b4377bc8a49c99c69fc357aec6c01 13 | 14 | -------------------------------------------------------------------------------- /mathdisplaylib/cdep.yml: -------------------------------------------------------------------------------- 1 | builders: [cmake] 2 | 3 | dependencies: 4 | - compile: com.github.jomof:freetype:2.6.2-rev14 5 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-accent/inner-list.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTAccent.innerList - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTAccent / innerList
10 |
11 |

innerList

12 | 13 | var innerList: MTMathList? 16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-column-alignment/-k-m-t-column-alignment-center.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTColumnAlignment.KMTColumnAlignmentCenter - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTColumnAlignment / KMTColumnAlignmentCenter
10 |
11 |

KMTColumnAlignmentCenter

12 | KMTColumnAlignmentCenter 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-column-alignment/-k-m-t-column-alignment-left.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTColumnAlignment.KMTColumnAlignmentLeft - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTColumnAlignment / KMTColumnAlignmentLeft
10 |
11 |

KMTColumnAlignmentLeft

12 | KMTColumnAlignmentLeft 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-column-alignment/-k-m-t-column-alignment-right.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTColumnAlignment.KMTColumnAlignmentRight - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTColumnAlignment / KMTColumnAlignmentRight
10 |
11 |

KMTColumnAlignmentRight

12 | KMTColumnAlignmentRight 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-env-properties/ended.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTEnvProperties.ended - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTEnvProperties / ended
10 |
11 |

ended

12 | 13 | var ended: Boolean 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-env-properties/env-name.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTEnvProperties.envName - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTEnvProperties / envName
10 |
11 |

envName

12 | 13 | var envName: String? 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-env-properties/num-rows.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTEnvProperties.numRows - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTEnvProperties / numRows
10 |
11 |

numRows

12 | 13 | var numRows: Long 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-font-style/-k-m-t-font-style-blackboard.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFontStyle.KMTFontStyleBlackboard - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTFontStyle / KMTFontStyleBlackboard
10 |
11 |

KMTFontStyleBlackboard

12 | KMTFontStyleBlackboard 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-font-style/-k-m-t-font-style-bold-italic.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFontStyle.KMTFontStyleBoldItalic - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTFontStyle / KMTFontStyleBoldItalic
10 |
11 |

KMTFontStyleBoldItalic

12 | KMTFontStyleBoldItalic 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-font-style/-k-m-t-font-style-bold.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFontStyle.KMTFontStyleBold - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTFontStyle / KMTFontStyleBold
10 |
11 |

KMTFontStyleBold

12 | KMTFontStyleBold 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-font-style/-k-m-t-font-style-caligraphic.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFontStyle.KMTFontStyleCaligraphic - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTFontStyle / KMTFontStyleCaligraphic
10 |
11 |

KMTFontStyleCaligraphic

12 | KMTFontStyleCaligraphic 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-font-style/-k-m-t-font-style-default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFontStyle.KMTFontStyleDefault - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTFontStyle / KMTFontStyleDefault
10 |
11 |

KMTFontStyleDefault

12 | KMTFontStyleDefault 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-font-style/-k-m-t-font-style-fraktur.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFontStyle.KMTFontStyleFraktur - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTFontStyle / KMTFontStyleFraktur
10 |
11 |

KMTFontStyleFraktur

12 | KMTFontStyleFraktur 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-font-style/-k-m-t-font-style-italic.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFontStyle.KMTFontStyleItalic - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTFontStyle / KMTFontStyleItalic
10 |
11 |

KMTFontStyleItalic

12 | KMTFontStyleItalic 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-font-style/-k-m-t-font-style-roman.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFontStyle.KMTFontStyleRoman - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTFontStyle / KMTFontStyleRoman
10 |
11 |

KMTFontStyleRoman

12 | KMTFontStyleRoman 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-font-style/-k-m-t-font-style-sans-serif.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFontStyle.KMTFontStyleSansSerif - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTFontStyle / KMTFontStyleSansSerif
10 |
11 |

KMTFontStyleSansSerif

12 | KMTFontStyleSansSerif 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-font-style/-k-m-t-font-style-typewriter.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFontStyle.KMTFontStyleTypewriter - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTFontStyle / KMTFontStyleTypewriter
10 |
11 |

KMTFontStyleTypewriter

12 | KMTFontStyleTypewriter 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-fraction/numerator.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFraction.numerator - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTFraction / numerator
10 |
11 |

numerator

12 | 13 | var numerator: MTMathList? 16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-inner/-init-.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTInner. 5 | <init> - 6 | 7 | 8 | 9 | 10 | com.agog.mathdisplay.parse / MTInner / <init>
12 |
13 |

<init>

14 | MTInner() 16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-inner/inner-list.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTInner.innerList - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTInner / innerList
10 |
11 |

innerList

12 | 13 | var innerList: MTMathList? 16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-inner/left-boundary.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTInner.leftBoundary - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTInner / leftBoundary
10 |
11 |

leftBoundary

12 | 13 | var leftBoundary: MTMathAtom? 16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-large-operator/has-limits.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTLargeOperator.hasLimits - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTLargeOperator / hasLimits
10 |
11 |

hasLimits

12 | 13 | var hasLimits: Boolean 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-line-style/-k-m-t-line-style-display.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTLineStyle.KMTLineStyleDisplay - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTLineStyle / KMTLineStyleDisplay
10 |
11 |

KMTLineStyleDisplay

12 | KMTLineStyleDisplay 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-line-style/-k-m-t-line-style-script-script.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTLineStyle.KMTLineStyleScriptScript - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTLineStyle / KMTLineStyleScriptScript
10 |
11 |

KMTLineStyleScriptScript

12 | KMTLineStyleScriptScript 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-line-style/-k-m-t-line-style-script.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTLineStyle.KMTLineStyleScript - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTLineStyle / KMTLineStyleScript
10 |
11 |

KMTLineStyleScript

12 | KMTLineStyleScript 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-line-style/-k-m-t-line-style-text.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTLineStyle.KMTLineStyleText - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTLineStyle / KMTLineStyleText
10 |
11 |

KMTLineStyleText

12 | KMTLineStyleText 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-factory/-init-.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathAtomFactory. 5 | <init> - 6 | 7 | 8 | 9 | 10 | com.agog.mathdisplay.parse / MTMathAtomFactory / <init>
12 |
13 |

<init>

14 | MTMathAtomFactory() 16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-type/-k-m-t-math-atom-accent.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathAtomType.KMTMathAtomAccent - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTMathAtomType / KMTMathAtomAccent
10 |
11 |

KMTMathAtomAccent

12 | KMTMathAtomAccent 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-type/-k-m-t-math-atom-binary-operator.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathAtomType.KMTMathAtomBinaryOperator - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTMathAtomType / KMTMathAtomBinaryOperator
10 |
11 |

KMTMathAtomBinaryOperator

12 | KMTMathAtomBinaryOperator 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-type/-k-m-t-math-atom-boundary.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathAtomType.KMTMathAtomBoundary - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTMathAtomType / KMTMathAtomBoundary
10 |
11 |

KMTMathAtomBoundary

12 | KMTMathAtomBoundary 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-type/-k-m-t-math-atom-close.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathAtomType.KMTMathAtomClose - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTMathAtomType / KMTMathAtomClose
10 |
11 |

KMTMathAtomClose

12 | KMTMathAtomClose 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-type/-k-m-t-math-atom-color.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathAtomType.KMTMathAtomColor - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTMathAtomType / KMTMathAtomColor
10 |
11 |

KMTMathAtomColor

12 | KMTMathAtomColor 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-type/-k-m-t-math-atom-fraction.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathAtomType.KMTMathAtomFraction - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTMathAtomType / KMTMathAtomFraction
10 |
11 |

KMTMathAtomFraction

12 | KMTMathAtomFraction 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-type/-k-m-t-math-atom-inner.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathAtomType.KMTMathAtomInner - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTMathAtomType / KMTMathAtomInner
10 |
11 |

KMTMathAtomInner

12 | KMTMathAtomInner 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-type/-k-m-t-math-atom-large-operator.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathAtomType.KMTMathAtomLargeOperator - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTMathAtomType / KMTMathAtomLargeOperator
10 |
11 |

KMTMathAtomLargeOperator

12 | KMTMathAtomLargeOperator 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-type/-k-m-t-math-atom-none.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathAtomType.KMTMathAtomNone - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTMathAtomType / KMTMathAtomNone
10 |
11 |

KMTMathAtomNone

12 | KMTMathAtomNone 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-type/-k-m-t-math-atom-number.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathAtomType.KMTMathAtomNumber - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTMathAtomType / KMTMathAtomNumber
10 |
11 |

KMTMathAtomNumber

12 | KMTMathAtomNumber 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-type/-k-m-t-math-atom-open.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathAtomType.KMTMathAtomOpen - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTMathAtomType / KMTMathAtomOpen
10 |
11 |

KMTMathAtomOpen

12 | KMTMathAtomOpen 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-type/-k-m-t-math-atom-ordinary.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathAtomType.KMTMathAtomOrdinary - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTMathAtomType / KMTMathAtomOrdinary
10 |
11 |

KMTMathAtomOrdinary

12 | KMTMathAtomOrdinary 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-type/-k-m-t-math-atom-overline.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathAtomType.KMTMathAtomOverline - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTMathAtomType / KMTMathAtomOverline
10 |
11 |

KMTMathAtomOverline

12 | KMTMathAtomOverline 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-type/-k-m-t-math-atom-placeholder.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathAtomType.KMTMathAtomPlaceholder - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTMathAtomType / KMTMathAtomPlaceholder
10 |
11 |

KMTMathAtomPlaceholder

12 | KMTMathAtomPlaceholder 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-type/-k-m-t-math-atom-punctuation.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathAtomType.KMTMathAtomPunctuation - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTMathAtomType / KMTMathAtomPunctuation
10 |
11 |

KMTMathAtomPunctuation

12 | KMTMathAtomPunctuation 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-type/-k-m-t-math-atom-radical.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathAtomType.KMTMathAtomRadical - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTMathAtomType / KMTMathAtomRadical
10 |
11 |

KMTMathAtomRadical

12 | KMTMathAtomRadical 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-type/-k-m-t-math-atom-relation.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathAtomType.KMTMathAtomRelation - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTMathAtomType / KMTMathAtomRelation
10 |
11 |

KMTMathAtomRelation

12 | KMTMathAtomRelation 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-type/-k-m-t-math-atom-space.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathAtomType.KMTMathAtomSpace - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTMathAtomType / KMTMathAtomSpace
10 |
11 |

KMTMathAtomSpace

12 | KMTMathAtomSpace 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-type/-k-m-t-math-atom-style.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathAtomType.KMTMathAtomStyle - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTMathAtomType / KMTMathAtomStyle
10 |
11 |

KMTMathAtomStyle

12 | KMTMathAtomStyle 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-type/-k-m-t-math-atom-table.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathAtomType.KMTMathAtomTable - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTMathAtomType / KMTMathAtomTable
10 |
11 |

KMTMathAtomTable

12 | KMTMathAtomTable 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-type/-k-m-t-math-atom-unary-operator.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathAtomType.KMTMathAtomUnaryOperator - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTMathAtomType / KMTMathAtomUnaryOperator
10 |
11 |

KMTMathAtomUnaryOperator

12 | KMTMathAtomUnaryOperator 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-type/-k-m-t-math-atom-underline.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathAtomType.KMTMathAtomUnderline - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTMathAtomType / KMTMathAtomUnderline
10 |
11 |

KMTMathAtomUnderline

12 | KMTMathAtomUnderline 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom-type/-k-m-t-math-atom-variable.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathAtomType.KMTMathAtomVariable - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTMathAtomType / KMTMathAtomVariable
10 |
11 |

KMTMathAtomVariable

12 | KMTMathAtomVariable 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom/description.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathAtom.description - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTMathAtom / description
10 |
11 |

description

12 | 13 | fun description(): String 16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom/fused-atoms.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathAtom.fusedAtoms - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTMathAtom / fusedAtoms
10 |
11 |

fusedAtoms

12 | 13 | var fusedAtoms: <ERROR CLASS> 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom/index-range.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathAtom.indexRange - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTMathAtom / indexRange
10 |
11 |

indexRange

12 | 13 | var indexRange: NSRange 16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom/nucleus.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathAtom.nucleus - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTMathAtom / nucleus
10 |
11 |

nucleus

12 | 13 | var nucleus: String 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-atom/type.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathAtom.type - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTMathAtom / type
10 |
11 |

type

12 | 13 | var type: MTMathAtomType 16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-color/-init-.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathColor. 5 | <init> - 6 | 7 | 8 | 9 | 10 | com.agog.mathdisplay.parse / MTMathColor / <init>
12 |
13 |

<init>

14 | MTMathColor() 16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-color/color-string.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathColor.colorString - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTMathColor / colorString
10 |
11 |

colorString

12 | 13 | var colorString: String? 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-color/inner-list.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathColor.innerList - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTMathColor / innerList
10 |
11 |

innerList

12 | 13 | var innerList: MTMathList? 16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-list/atoms.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathList.atoms - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTMathList / atoms
10 |
11 |

atoms

12 | 13 | var atoms: <ERROR CLASS> 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-list/description.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathList.description - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTMathList / description
10 |
11 |

description

12 | 13 | fun description(): String 16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-list/to-string.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathList.toString - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTMathList / toString
10 |
11 |

toString

12 | 13 | fun toString(): String 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-space/space.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathSpace.space - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTMathSpace / space
10 |
11 |

space

12 | 13 | var space: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-style/style.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathStyle.style - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTMathStyle / style
10 |
11 |

style

12 | 13 | var style: MTLineStyle 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-table/environment.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathTable.environment - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTMathTable / environment
10 |
11 |

environment

12 | 13 | var environment: String? 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-table/inter-column-spacing.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathTable.interColumnSpacing - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTMathTable / interColumnSpacing
10 |
11 |

interColumnSpacing

12 | 13 | var interColumnSpacing: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-table/num-columns.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathTable.numColumns - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTMathTable / numColumns
10 |
11 |

numColumns

12 | 13 | fun numColumns(): Int 16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-math-table/num-rows.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathTable.numRows - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTMathTable / numRows
10 |
11 |

numRows

12 | 13 | fun numRows(): Int 16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-over-line/-init-.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTOverLine. 5 | <init> - 6 | 7 | 8 | 9 | 10 | com.agog.mathdisplay.parse / MTOverLine / <init>
12 |
13 |

<init>

14 | MTOverLine() 16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-over-line/inner-list.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTOverLine.innerList - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTOverLine / innerList
10 |
11 |

innerList

12 | 13 | var innerList: MTMathList? 16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-parse-error/clear.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTParseError.clear - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTParseError / clear
10 |
11 |

clear

12 | 13 | fun clear(): Unit 16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-parse-error/errorcode.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTParseError.errorcode - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTParseError / errorcode
10 |
11 |

errorcode

12 | 13 | var errorcode: MTParseErrors 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-parse-error/errordesc.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTParseError.errordesc - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTParseError / errordesc
10 |
11 |

errordesc

12 | 13 | var errordesc: String? 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-parse-errors/-character-not-found.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTParseErrors.CharacterNotFound - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTParseErrors / CharacterNotFound
10 |
11 |

CharacterNotFound

12 | CharacterNotFound 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-parse-errors/-error-none.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTParseErrors.ErrorNone - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTParseErrors / ErrorNone
10 |
11 |

ErrorNone

12 | ErrorNone 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-parse-errors/-internal-error.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTParseErrors.InternalError - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTParseErrors / InternalError
10 |
11 |

InternalError

12 | InternalError 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-parse-errors/-invalid-command.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTParseErrors.InvalidCommand - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTParseErrors / InvalidCommand
10 |
11 |

InvalidCommand

12 | InvalidCommand 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-parse-errors/-invalid-delimiter.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTParseErrors.InvalidDelimiter - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTParseErrors / InvalidDelimiter
10 |
11 |

InvalidDelimiter

12 | InvalidDelimiter 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-parse-errors/-invalid-env.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTParseErrors.InvalidEnv - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTParseErrors / InvalidEnv
10 |
11 |

InvalidEnv

12 | InvalidEnv 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-parse-errors/-invalid-limits.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTParseErrors.InvalidLimits - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTParseErrors / InvalidLimits
10 |
11 |

InvalidLimits

12 | InvalidLimits 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-parse-errors/-invalid-num-columns.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTParseErrors.InvalidNumColumns - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTParseErrors / InvalidNumColumns
10 |
11 |

InvalidNumColumns

12 | InvalidNumColumns 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-parse-errors/-mismatch-braces.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTParseErrors.MismatchBraces - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTParseErrors / MismatchBraces
10 |
11 |

MismatchBraces

12 | MismatchBraces 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-parse-errors/-missing-begin.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTParseErrors.MissingBegin - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTParseErrors / MissingBegin
10 |
11 |

MissingBegin

12 | MissingBegin 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-parse-errors/-missing-delimiter.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTParseErrors.MissingDelimiter - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTParseErrors / MissingDelimiter
10 |
11 |

MissingDelimiter

12 | MissingDelimiter 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-parse-errors/-missing-end.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTParseErrors.MissingEnd - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTParseErrors / MissingEnd
10 |
11 |

MissingEnd

12 | MissingEnd 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-parse-errors/-missing-env.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTParseErrors.MissingEnv - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTParseErrors / MissingEnv
10 |
11 |

MissingEnv

12 | MissingEnv 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-parse-errors/-missing-left.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTParseErrors.MissingLeft - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTParseErrors / MissingLeft
10 |
11 |

MissingLeft

12 | MissingLeft 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-parse-errors/-missing-right.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTParseErrors.MissingRight - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTParseErrors / MissingRight
10 |
11 |

MissingRight

12 | MissingRight 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-radical/-init-.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTRadical. 5 | <init> - 6 | 7 | 8 | 9 | 10 | com.agog.mathdisplay.parse / MTRadical / <init>
12 |
13 |

<init>

14 | MTRadical() 16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-radical/degree.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTRadical.degree - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTRadical / degree
10 |
11 |

degree

12 | 13 | var degree: MTMathList? 16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-radical/radicand.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTRadical.radicand - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTRadical / radicand
10 |
11 |

radicand

12 | 13 | var radicand: MTMathList? 16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-under-line/-init-.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTUnderLine. 5 | <init> - 6 | 7 | 8 | 9 | 10 | com.agog.mathdisplay.parse / MTUnderLine / <init>
12 |
13 |

<init>

14 | MTUnderLine() 16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-m-t-under-line/inner-list.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTUnderLine.innerList - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MTUnderLine / innerList
10 |
11 |

innerList

12 | 13 | var innerList: MTMathList? 16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-math-display-exception/message.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MathDisplayException.message - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / MathDisplayException / message
10 |
11 |

message

12 | 13 | var message: String 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-n-s-not-found.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | NSNotFound - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / NSNotFound
9 |
10 |

NSNotFound

11 | 12 | const val NSNotFound: Int 14 | 15 | 16 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-n-s-range/length.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | NSRange.length - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / NSRange / length
10 |
11 |

length

12 | 13 | var length: Int 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-n-s-range/location.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | NSRange.location - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / NSRange / location
10 |
11 |

location

12 | 13 | var location: Int 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.parse/-n-s-range/maxrange.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | NSRange.maxrange - 5 | 6 | 7 | 8 | com.agog.mathdisplay.parse / NSRange / maxrange
10 |
11 |

maxrange

12 | 13 | val maxrange: Int 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-bounding-box/height.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | BoundingBox.height - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / BoundingBox / height
10 |
11 |

height

12 | 13 | val height: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-bounding-box/lower-left-x.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | BoundingBox.lowerLeftX - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / BoundingBox / lowerLeftX
10 |
11 |

lowerLeftX

12 | 13 | var lowerLeftX: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-bounding-box/lower-left-y.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | BoundingBox.lowerLeftY - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / BoundingBox / lowerLeftY
10 |
11 |

lowerLeftY

12 | 13 | var lowerLeftY: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-bounding-box/to-string.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | BoundingBox.toString - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / BoundingBox / toString
10 |
11 |

toString

12 | 13 | fun toString(): String 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-bounding-box/upper-right-x.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | BoundingBox.upperRightX - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / BoundingBox / upperRightX
10 |
11 |

upperRightX

12 | 13 | var upperRightX: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-bounding-box/upper-right-y.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | BoundingBox.upperRightY - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / BoundingBox / upperRightY
10 |
11 |

upperRightY

12 | 13 | var upperRightY: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-bounding-box/width.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | BoundingBox.width - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / BoundingBox / width
10 |
11 |

width

12 | 13 | val width: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-c-g-glyph/gid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | CGGlyph.gid - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / CGGlyph / gid
10 |
11 |

gid

12 | 13 | var gid: Int 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-c-g-glyph/glyph-ascent.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | CGGlyph.glyphAscent - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / CGGlyph / glyphAscent
10 |
11 |

glyphAscent

12 | 13 | var glyphAscent: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-c-g-glyph/glyph-descent.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | CGGlyph.glyphDescent - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / CGGlyph / glyphDescent
10 |
11 |

glyphDescent

12 | 13 | var glyphDescent: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-c-g-glyph/glyph-width.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | CGGlyph.glyphWidth - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / CGGlyph / glyphWidth
10 |
11 |

glyphWidth

12 | 13 | var glyphWidth: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-c-g-glyph/is-valid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | CGGlyph.isValid - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / CGGlyph / isValid
10 |
11 |

isValid

12 | 13 | val isValid: Boolean 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-c-g-point/x.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | CGPoint.x - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / CGPoint / x
10 |
11 |

x

12 | 13 | var x: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-c-g-point/y.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | CGPoint.y - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / CGPoint / y
10 |
11 |

y

12 | 13 | var y: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-c-g-rect/height.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | CGRect.height - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / CGRect / height
10 |
11 |

height

12 | 13 | var height: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-c-g-rect/width.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | CGRect.width - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / CGRect / width
10 |
11 |

width

12 | 13 | var width: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-c-g-rect/x.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | CGRect.x - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / CGRect / x
10 |
11 |

x

12 | 13 | var x: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-c-g-rect/y.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | CGRect.y - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / CGRect / y
10 |
11 |

y

12 | 13 | var y: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-d-e-b-u-g.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | DEBUG - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / DEBUG
9 |
10 |

DEBUG

11 | 12 | const val DEBUG: Boolean 14 | 15 | 16 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-accent-display/accent.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTAccentDisplay.accent - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTAccentDisplay / accent
10 |
11 |

accent

12 | 13 | val accent: MTGlyphDisplay 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-accent-display/accentee.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTAccentDisplay.accentee - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTAccentDisplay / accentee
10 |
11 |

accentee

12 | 13 | val accentee: MTMathListDisplay 16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-c-t-line-display/font.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTCTLineDisplay.font - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTCTLineDisplay / font
10 |
11 |

font

12 | 13 | val font: MTFont 16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-c-t-line-display/str.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTCTLineDisplay.str - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTCTLineDisplay / str
10 |
11 |

str

12 | 13 | val str: String 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-codepoint-char/codepoint.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTCodepointChar.codepoint - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTCodepointChar / codepoint
10 |
11 |

codepoint

12 | 13 | val codepoint: Int 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-display/ascent.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTDisplay.ascent - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTDisplay / ascent
10 |
11 |

ascent

12 | 13 | open var ascent: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-display/descent.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTDisplay.descent - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTDisplay / descent
10 |
11 |

descent

12 | 13 | open var descent: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-display/has-script.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTDisplay.hasScript - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTDisplay / hasScript
10 |
11 |

hasScript

12 | 13 | var hasScript: Boolean 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-display/local-text-color.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTDisplay.localTextColor - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTDisplay / localTextColor
10 |
11 |

localTextColor

12 | 13 | var localTextColor: Int 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-display/position.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTDisplay.position - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTDisplay / position
10 |
11 |

position

12 | 13 | var position: CGPoint 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-display/range.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTDisplay.range - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTDisplay / range
10 |
11 |

range

12 | 13 | var range: NSRange 16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-display/shift-down.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTDisplay.shiftDown - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTDisplay / shiftDown
10 |
11 |

shiftDown

12 | 13 | var shiftDown: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-display/text-color.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTDisplay.textColor - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTDisplay / textColor
10 |
11 |

textColor

12 | 13 | var textColor: Int 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-display/width.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTDisplay.width - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTDisplay / width
10 |
11 |

width

12 | 13 | open var width: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-draw-free-type/mathfont.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTDrawFreeType.mathfont - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTDrawFreeType / mathfont
10 |
11 |

mathfont

12 | 13 | val mathfont: MTFontMathTable 16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/accent-base-height.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFontMathTable.accentBaseHeight - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTFontMathTable / accentBaseHeight
10 |
11 |

accentBaseHeight

12 | 13 | val accentBaseHeight: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/axis-height.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFontMathTable.axisHeight - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTFontMathTable / axisHeight
10 |
11 |

axisHeight

12 | 13 | val axisHeight: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/font-size.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFontMathTable.fontSize - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTFontMathTable / fontSize
10 |
11 |

fontSize

12 | 13 | var fontSize: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/font.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFontMathTable.font - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTFontMathTable / font
10 |
11 |

font

12 | 13 | val font: MTFont 16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/freeface.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFontMathTable.freeface - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTFontMathTable / freeface
10 |
11 |

freeface

12 | 13 | lateinit var freeface: <ERROR CLASS> 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/lower-limit-gap-min.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFontMathTable.lowerLimitGapMin - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTFontMathTable / lowerLimitGapMin
10 |
11 |

lowerLimitGapMin

12 | 13 | val lowerLimitGapMin: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/math-leading.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFontMathTable.mathLeading - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTFontMathTable / mathLeading
10 |
11 |

mathLeading

12 | 13 | val mathLeading: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/min-connector-overlap.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFontMathTable.minConnectorOverlap - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTFontMathTable / minConnectorOverlap
10 |
11 |

minConnectorOverlap

12 | 13 | val minConnectorOverlap: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/mu-unit.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFontMathTable.muUnit - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTFontMathTable / muUnit
10 |
11 |

muUnit

12 | 13 | fun muUnit(): Float 16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/overbar-extra-ascender.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFontMathTable.overbarExtraAscender - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTFontMathTable / overbarExtraAscender
10 |
11 |

overbarExtraAscender

12 | 13 | val overbarExtraAscender: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/overbar-rule-thickness.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFontMathTable.overbarRuleThickness - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTFontMathTable / overbarRuleThickness
10 |
11 |

overbarRuleThickness

12 | 13 | val overbarRuleThickness: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/overbar-vertical-gap.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFontMathTable.overbarVerticalGap - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTFontMathTable / overbarVerticalGap
10 |
11 |

overbarVerticalGap

12 | 13 | val overbarVerticalGap: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/radical-extra-ascender.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFontMathTable.radicalExtraAscender - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTFontMathTable / radicalExtraAscender
10 |
11 |

radicalExtraAscender

12 | 13 | val radicalExtraAscender: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/radical-rule-thickness.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFontMathTable.radicalRuleThickness - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTFontMathTable / radicalRuleThickness
10 |
11 |

radicalRuleThickness

12 | 13 | val radicalRuleThickness: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/radical-vertical-gap.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFontMathTable.radicalVerticalGap - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTFontMathTable / radicalVerticalGap
10 |
11 |

radicalVerticalGap

12 | 13 | val radicalVerticalGap: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/script-scale-down.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFontMathTable.scriptScaleDown - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTFontMathTable / scriptScaleDown
10 |
11 |

scriptScaleDown

12 | 13 | val scriptScaleDown: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/space-after-script.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFontMathTable.spaceAfterScript - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTFontMathTable / spaceAfterScript
10 |
11 |

spaceAfterScript

12 | 13 | val spaceAfterScript: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/stack-bottom-shift-down.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFontMathTable.stackBottomShiftDown - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTFontMathTable / stackBottomShiftDown
10 |
11 |

stackBottomShiftDown

12 | 13 | val stackBottomShiftDown: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/stack-gap-min.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFontMathTable.stackGapMin - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTFontMathTable / stackGapMin
10 |
11 |

stackGapMin

12 | 13 | val stackGapMin: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/stack-top-shift-up.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFontMathTable.stackTopShiftUp - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTFontMathTable / stackTopShiftUp
10 |
11 |

stackTopShiftUp

12 | 13 | val stackTopShiftUp: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/sub-superscript-gap-min.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFontMathTable.subSuperscriptGapMin - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTFontMathTable / subSuperscriptGapMin
10 |
11 |

subSuperscriptGapMin

12 | 13 | val subSuperscriptGapMin: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/subscript-shift-down.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFontMathTable.subscriptShiftDown - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTFontMathTable / subscriptShiftDown
10 |
11 |

subscriptShiftDown

12 | 13 | val subscriptShiftDown: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/subscript-top-max.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFontMathTable.subscriptTopMax - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTFontMathTable / subscriptTopMax
10 |
11 |

subscriptTopMax

12 | 13 | val subscriptTopMax: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/superscript-bottom-min.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFontMathTable.superscriptBottomMin - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTFontMathTable / superscriptBottomMin
10 |
11 |

superscriptBottomMin

12 | 13 | val superscriptBottomMin: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/superscript-shift-up.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFontMathTable.superscriptShiftUp - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTFontMathTable / superscriptShiftUp
10 |
11 |

superscriptShiftUp

12 | 13 | val superscriptShiftUp: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/underbar-vertical-gap.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFontMathTable.underbarVerticalGap - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTFontMathTable / underbarVerticalGap
10 |
11 |

underbarVerticalGap

12 | 13 | val underbarVerticalGap: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/units-per-em.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFontMathTable.unitsPerEm - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTFontMathTable / unitsPerEm
10 |
11 |

unitsPerEm

12 | 13 | var unitsPerEm: Int 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/upper-limit-gap-min.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFontMathTable.upperLimitGapMin - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTFontMathTable / upperLimitGapMin
10 |
11 |

upperLimitGapMin

12 | 13 | val upperLimitGapMin: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font/font-size.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFont.fontSize - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTFont / fontSize
10 |
11 |

fontSize

12 | 13 | val fontSize: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font/math-table.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFont.mathTable - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTFont / mathTable
10 |
11 |

mathTable

12 | 13 | var mathTable: MTFontMathTable 16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font/name.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFont.name - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTFont / name
10 |
11 |

name

12 | 13 | val name: String 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-fraction-display/ascent.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFractionDisplay.ascent - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTFractionDisplay / ascent
10 |
11 |

ascent

12 | 13 | var ascent: Float 15 |

Overrides MTDisplay.ascent

16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-fraction-display/denominator-down.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFractionDisplay.denominatorDown - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTFractionDisplay / denominatorDown
10 |
11 |

denominatorDown

12 | 13 | var denominatorDown: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-fraction-display/line-position.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFractionDisplay.linePosition - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTFractionDisplay / linePosition
10 |
11 |

linePosition

12 | 13 | var linePosition: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-fraction-display/line-thickness.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFractionDisplay.lineThickness - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTFractionDisplay / lineThickness
10 |
11 |

lineThickness

12 | 13 | var lineThickness: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-fraction-display/numerator-up.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFractionDisplay.numeratorUp - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTFractionDisplay / numeratorUp
10 |
11 |

numeratorUp

12 | 13 | var numeratorUp: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-fraction-display/width.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFractionDisplay.width - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTFractionDisplay / width
10 |
11 |

width

12 | 13 | var width: Float 15 |

Overrides MTDisplay.width

16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-glyph-display/ascent.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTGlyphDisplay.ascent - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTGlyphDisplay / ascent
10 |
11 |

ascent

12 | 13 | var ascent: Float 15 |

Overrides MTDisplay.ascent

16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-glyph-display/descent.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTGlyphDisplay.descent - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTGlyphDisplay / descent
10 |
11 |

descent

12 | 13 | var descent: Float 15 |

Overrides MTDisplay.descent

16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-glyph-display/glyph.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTGlyphDisplay.glyph - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTGlyphDisplay / glyph
10 |
11 |

glyph

12 | 13 | val glyph: CGGlyph 16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-glyph-display/myfont.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTGlyphDisplay.myfont - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTGlyphDisplay / myfont
10 |
11 |

myfont

12 | 13 | val myfont: MTFont 16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-glyph-part/end-connector-length.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTGlyphPart.endConnectorLength - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTGlyphPart / endConnectorLength
10 |
11 |

endConnectorLength

12 | 13 | var endConnectorLength: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-glyph-part/full-advance.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTGlyphPart.fullAdvance - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTGlyphPart / fullAdvance
10 |
11 |

fullAdvance

12 | 13 | var fullAdvance: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-glyph-part/glyph.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTGlyphPart.glyph - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTGlyphPart / glyph
10 |
11 |

glyph

12 | 13 | var glyph: Int 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-glyph-part/is-extender.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTGlyphPart.isExtender - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTGlyphPart / isExtender
10 |
11 |

isExtender

12 | 13 | var isExtender: Boolean 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-glyph-part/start-connector-length.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTGlyphPart.startConnectorLength - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTGlyphPart / startConnectorLength
10 |
11 |

startConnectorLength

12 | 13 | var startConnectorLength: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-inter-element-space-type/k-m-t-space-invalid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTInterElementSpaceType.kMTSpaceInvalid - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTInterElementSpaceType / kMTSpaceInvalid
10 |
11 |

kMTSpaceInvalid

12 | kMTSpaceInvalid 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-inter-element-space-type/k-m-t-space-n-s-medium.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTInterElementSpaceType.kMTSpaceNSMedium - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTInterElementSpaceType / kMTSpaceNSMedium
10 |
11 |

kMTSpaceNSMedium

12 | kMTSpaceNSMedium 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-inter-element-space-type/k-m-t-space-n-s-thick.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTInterElementSpaceType.kMTSpaceNSThick - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTInterElementSpaceType / kMTSpaceNSThick
10 |
11 |

kMTSpaceNSThick

12 | kMTSpaceNSThick 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-inter-element-space-type/k-m-t-space-n-s-thin.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTInterElementSpaceType.kMTSpaceNSThin - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTInterElementSpaceType / kMTSpaceNSThin
10 |
11 |

kMTSpaceNSThin

12 | kMTSpaceNSThin 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-inter-element-space-type/k-m-t-space-none.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTInterElementSpaceType.kMTSpaceNone - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTInterElementSpaceType / kMTSpaceNone
10 |
11 |

kMTSpaceNone

12 | kMTSpaceNone 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-inter-element-space-type/k-m-t-space-thin.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTInterElementSpaceType.kMTSpaceThin - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTInterElementSpaceType / kMTSpaceThin
10 |
11 |

kMTSpaceThin

12 | kMTSpaceThin 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-large-op-limits-display/extra-padding.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTLargeOpLimitsDisplay.extraPadding - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTLargeOpLimitsDisplay / extraPadding
10 |
11 |

extraPadding

12 | 13 | var extraPadding: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-large-op-limits-display/limit-shift.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTLargeOpLimitsDisplay.limitShift - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTLargeOpLimitsDisplay / limitShift
10 |
11 |

limitShift

12 | 13 | var limitShift: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-large-op-limits-display/lower-limit-gap.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTLargeOpLimitsDisplay.lowerLimitGap - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTLargeOpLimitsDisplay / lowerLimitGap
10 |
11 |

lowerLimitGap

12 | 13 | var lowerLimitGap: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-large-op-limits-display/nucleus.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTLargeOpLimitsDisplay.nucleus - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTLargeOpLimitsDisplay / nucleus
10 |
11 |

nucleus

12 | 13 | val nucleus: MTDisplay 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-large-op-limits-display/upper-limit-gap.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTLargeOpLimitsDisplay.upperLimitGap - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTLargeOpLimitsDisplay / upperLimitGap
10 |
11 |

upperLimitGap

12 | 13 | var upperLimitGap: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-line-display/inner.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTLineDisplay.inner - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTLineDisplay / inner
10 |
11 |

inner

12 | 13 | val inner: MTMathListDisplay 16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-line-display/line-shift-up.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTLineDisplay.lineShiftUp - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTLineDisplay / lineShiftUp
10 |
11 |

lineShiftUp

12 | 13 | var lineShiftUp: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-line-display/line-thickness.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTLineDisplay.lineThickness - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTLineDisplay / lineThickness
10 |
11 |

lineThickness

12 | 13 | var lineThickness: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-line-position/k-m-t-line-position-regular.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTLinePosition.kMTLinePositionRegular - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTLinePosition / kMTLinePositionRegular
10 |
11 |

kMTLinePositionRegular

12 | kMTLinePositionRegular 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-line-position/k-m-t-line-position-subscript.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTLinePosition.kMTLinePositionSubscript - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTLinePosition / kMTLinePositionSubscript
10 |
11 |

kMTLinePositionSubscript

12 | kMTLinePositionSubscript 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-line-position/k-m-t-line-position-superscript.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTLinePosition.kMTLinePositionSuperscript - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTLinePosition / kMTLinePositionSuperscript
10 |
11 |

kMTLinePositionSuperscript

12 | kMTLinePositionSuperscript 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-math-list-display/--index--.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathListDisplay.index - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTMathListDisplay / index
10 |
11 |

index

12 | 13 | var index: Int 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-math-list-display/type.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathListDisplay.type - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTMathListDisplay / type
10 |
11 |

type

12 | 13 | var type: MTLinePosition 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-radical-display/line-thickness.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTRadicalDisplay.lineThickness - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTRadicalDisplay / lineThickness
10 |
11 |

lineThickness

12 | 13 | var lineThickness: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-radical-display/radical-glyph.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTRadicalDisplay.radicalGlyph - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTRadicalDisplay / radicalGlyph
10 |
11 |

radicalGlyph

12 | 13 | val radicalGlyph: MTDisplay 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-radical-display/radical-shift.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTRadicalDisplay.radicalShift - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTRadicalDisplay / radicalShift
10 |
11 |

radicalShift

12 | 13 | var radicalShift: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-radical-display/top-kern.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTRadicalDisplay.topKern - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTRadicalDisplay / topKern
10 |
11 |

topKern

12 | 13 | var topKern: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-typesetter/cramped.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTTypesetter.cramped - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTTypesetter / cramped
10 |
11 |

cramped

12 | 13 | var cramped: Boolean 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-typesetter/current-line.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTTypesetter.currentLine - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTTypesetter / currentLine
10 |
11 |

currentLine

12 | 13 | var currentLine: String 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-typesetter/font.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTTypesetter.font - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTTypesetter / font
10 |
11 |

font

12 | 13 | val font: MTFont 16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-typesetter/spaced.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTTypesetter.spaced - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTTypesetter / spaced
10 |
11 |

spaced

12 | 13 | var spaced: Boolean 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-typesetter/style-font.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTTypesetter.styleFont - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTTypesetter / styleFont
10 |
11 |

styleFont

12 | 13 | var styleFont: MTFont 16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-typesetter/style.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTTypesetter.style - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / MTTypesetter / style
10 |
11 |

style

12 | 13 | var style: MTLineStyle 16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/k-base-line-skip-multiplier.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | kBaseLineSkipMultiplier - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / kBaseLineSkipMultiplier
10 |
11 |

kBaseLineSkipMultiplier

12 | 13 | const val kBaseLineSkipMultiplier: Float 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/k-delimiter-factor.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | kDelimiterFactor - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / kDelimiterFactor
10 |
11 |

kDelimiterFactor

12 | 13 | const val kDelimiterFactor: Int 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/k-delimiter-shortfall-points.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | kDelimiterShortfallPoints - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / kDelimiterShortfallPoints
9 |
10 |

kDelimiterShortfallPoints

11 | 12 | const val kDelimiterShortfallPoints: Int 14 | 15 | 16 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/k-jot-multiplier.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | kJotMultiplier - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / kJotMultiplier
9 |
10 |

kJotMultiplier

11 | 12 | const val kJotMultiplier: Float 14 | 15 | 16 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/k-line-skip-limit-multiplier.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | kLineSkipLimitMultiplier - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / kLineSkipLimitMultiplier
9 |
10 |

kLineSkipLimitMultiplier

11 | 12 | const val kLineSkipLimitMultiplier: Float 14 | 15 | 16 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/k-line-skip-multiplier.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | kLineSkipMultiplier - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / kLineSkipMultiplier
9 |
10 |

kLineSkipMultiplier

11 | 12 | const val kLineSkipMultiplier: Float 14 | 15 | 16 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-greek-capital-bold-start.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | kMTUnicodeGreekCapitalBoldStart - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / kMTUnicodeGreekCapitalBoldStart
9 |
10 |

kMTUnicodeGreekCapitalBoldStart

11 | 12 | const val kMTUnicodeGreekCapitalBoldStart: Int 14 | 15 | 16 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-greek-capital-end.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | kMTUnicodeGreekCapitalEnd - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / kMTUnicodeGreekCapitalEnd
9 |
10 |

kMTUnicodeGreekCapitalEnd

11 | 12 | const val kMTUnicodeGreekCapitalEnd: Char 14 | 15 | 16 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-greek-capital-italic-start.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | kMTUnicodeGreekCapitalItalicStart - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / kMTUnicodeGreekCapitalItalicStart
9 |
10 |

kMTUnicodeGreekCapitalItalicStart

11 | 12 | const val kMTUnicodeGreekCapitalItalicStart: Int 14 | 15 | 16 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-greek-capital-start.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | kMTUnicodeGreekCapitalStart - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / kMTUnicodeGreekCapitalStart
9 |
10 |

kMTUnicodeGreekCapitalStart

11 | 12 | const val kMTUnicodeGreekCapitalStart: Char 14 | 15 | 16 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-greek-lower-bold-italic-start.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | kMTUnicodeGreekLowerBoldItalicStart - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / kMTUnicodeGreekLowerBoldItalicStart
9 |
10 |

kMTUnicodeGreekLowerBoldItalicStart

11 | 12 | const val kMTUnicodeGreekLowerBoldItalicStart: Int 14 | 15 | 16 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-greek-lower-bold-start.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | kMTUnicodeGreekLowerBoldStart - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / kMTUnicodeGreekLowerBoldStart
9 |
10 |

kMTUnicodeGreekLowerBoldStart

11 | 12 | const val kMTUnicodeGreekLowerBoldStart: Int 14 | 15 | 16 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-greek-lower-end.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | kMTUnicodeGreekLowerEnd - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / kMTUnicodeGreekLowerEnd
10 |
11 |

kMTUnicodeGreekLowerEnd

12 | 13 | const val kMTUnicodeGreekLowerEnd: Char 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-greek-lower-italic-start.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | kMTUnicodeGreekLowerItalicStart - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / kMTUnicodeGreekLowerItalicStart
9 |
10 |

kMTUnicodeGreekLowerItalicStart

11 | 12 | const val kMTUnicodeGreekLowerItalicStart: Int 14 | 15 | 16 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-greek-lower-start.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | kMTUnicodeGreekLowerStart - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / kMTUnicodeGreekLowerStart
9 |
10 |

kMTUnicodeGreekLowerStart

11 | 12 | const val kMTUnicodeGreekLowerStart: Char 14 | 15 | 16 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-greek-symbol-bold-start.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | kMTUnicodeGreekSymbolBoldStart - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / kMTUnicodeGreekSymbolBoldStart
9 |
10 |

kMTUnicodeGreekSymbolBoldStart

11 | 12 | const val kMTUnicodeGreekSymbolBoldStart: Int 14 | 15 | 16 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-greek-symbol-italic-start.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | kMTUnicodeGreekSymbolItalicStart - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / kMTUnicodeGreekSymbolItalicStart
9 |
10 |

kMTUnicodeGreekSymbolItalicStart

11 | 12 | const val kMTUnicodeGreekSymbolItalicStart: Int 14 | 15 | 16 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-math-capital-bold-start.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | kMTUnicodeMathCapitalBoldStart - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / kMTUnicodeMathCapitalBoldStart
9 |
10 |

kMTUnicodeMathCapitalBoldStart

11 | 12 | const val kMTUnicodeMathCapitalBoldStart: Int 14 | 15 | 16 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-math-capital-fraktur-start.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | kMTUnicodeMathCapitalFrakturStart - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / kMTUnicodeMathCapitalFrakturStart
9 |
10 |

kMTUnicodeMathCapitalFrakturStart

11 | 12 | const val kMTUnicodeMathCapitalFrakturStart: Int 14 | 15 | 16 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-math-capital-italic-start.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | kMTUnicodeMathCapitalItalicStart - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / kMTUnicodeMathCapitalItalicStart
9 |
10 |

kMTUnicodeMathCapitalItalicStart

11 | 12 | const val kMTUnicodeMathCapitalItalicStart: Int 14 | 15 | 16 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-math-capital-sans-serif-start.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | kMTUnicodeMathCapitalSansSerifStart - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / kMTUnicodeMathCapitalSansSerifStart
9 |
10 |

kMTUnicodeMathCapitalSansSerifStart

11 | 12 | const val kMTUnicodeMathCapitalSansSerifStart: Int 14 | 15 | 16 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-math-capital-script-start.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | kMTUnicodeMathCapitalScriptStart - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / kMTUnicodeMathCapitalScriptStart
9 |
10 |

kMTUnicodeMathCapitalScriptStart

11 | 12 | const val kMTUnicodeMathCapitalScriptStart: Int 14 | 15 | 16 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-math-capital-t-t-start.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | kMTUnicodeMathCapitalTTStart - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / kMTUnicodeMathCapitalTTStart
9 |
10 |

kMTUnicodeMathCapitalTTStart

11 | 12 | const val kMTUnicodeMathCapitalTTStart: Int 14 | 15 | 16 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-math-lower-blackboard-start.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | kMTUnicodeMathLowerBlackboardStart - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / kMTUnicodeMathLowerBlackboardStart
9 |
10 |

kMTUnicodeMathLowerBlackboardStart

11 | 12 | const val kMTUnicodeMathLowerBlackboardStart: Int 14 | 15 | 16 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-math-lower-bold-italic-start.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | kMTUnicodeMathLowerBoldItalicStart - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / kMTUnicodeMathLowerBoldItalicStart
9 |
10 |

kMTUnicodeMathLowerBoldItalicStart

11 | 12 | const val kMTUnicodeMathLowerBoldItalicStart: Int 14 | 15 | 16 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-math-lower-bold-start.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | kMTUnicodeMathLowerBoldStart - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / kMTUnicodeMathLowerBoldStart
9 |
10 |

kMTUnicodeMathLowerBoldStart

11 | 12 | const val kMTUnicodeMathLowerBoldStart: Int 14 | 15 | 16 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-math-lower-fraktur-start.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | kMTUnicodeMathLowerFrakturStart - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / kMTUnicodeMathLowerFrakturStart
9 |
10 |

kMTUnicodeMathLowerFrakturStart

11 | 12 | const val kMTUnicodeMathLowerFrakturStart: Int 14 | 15 | 16 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-math-lower-italic-start.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | kMTUnicodeMathLowerItalicStart - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / kMTUnicodeMathLowerItalicStart
9 |
10 |

kMTUnicodeMathLowerItalicStart

11 | 12 | const val kMTUnicodeMathLowerItalicStart: Int 14 | 15 | 16 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-math-lower-sans-serif-start.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | kMTUnicodeMathLowerSansSerifStart - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / kMTUnicodeMathLowerSansSerifStart
9 |
10 |

kMTUnicodeMathLowerSansSerifStart

11 | 12 | const val kMTUnicodeMathLowerSansSerifStart: Int 14 | 15 | 16 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-math-lower-t-t-start.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | kMTUnicodeMathLowerTTStart - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / kMTUnicodeMathLowerTTStart
9 |
10 |

kMTUnicodeMathLowerTTStart

11 | 12 | const val kMTUnicodeMathLowerTTStart: Int 14 | 15 | 16 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-number-blackboard-start.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | kMTUnicodeNumberBlackboardStart - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / kMTUnicodeNumberBlackboardStart
9 |
10 |

kMTUnicodeNumberBlackboardStart

11 | 12 | const val kMTUnicodeNumberBlackboardStart: Int 14 | 15 | 16 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-number-bold-start.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | kMTUnicodeNumberBoldStart - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / kMTUnicodeNumberBoldStart
9 |
10 |

kMTUnicodeNumberBoldStart

11 | 12 | const val kMTUnicodeNumberBoldStart: Int 14 | 15 | 16 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-number-sans-serif-start.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | kMTUnicodeNumberSansSerifStart - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / kMTUnicodeNumberSansSerifStart
9 |
10 |

kMTUnicodeNumberSansSerifStart

11 | 12 | const val kMTUnicodeNumberSansSerifStart: Int 14 | 15 | 16 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-number-t-t-start.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | kMTUnicodeNumberTTStart - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / kMTUnicodeNumberTTStart
10 |
11 |

kMTUnicodeNumberTTStart

12 | 13 | const val kMTUnicodeNumberTTStart: Int 15 | 16 | 17 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay.render/k-m-t-unicode-planks-constant.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | kMTUnicodePlanksConstant - 5 | 6 | 7 | 8 | com.agog.mathdisplay.render / kMTUnicodePlanksConstant
9 |
10 |

kMTUnicodePlanksConstant

11 | 12 | const val kMTUnicodePlanksConstant: Int 14 | 15 | 16 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay/-k-default-font-size.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | KDefaultFontSize - 5 | 6 | 7 | 8 | com.agog.mathdisplay / KDefaultFontSize
9 |
10 |

KDefaultFontSize

11 | 12 | const val KDefaultFontSize: Float 14 | 15 | 16 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay/-m-t-font-manager/-init-.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFontManager. 5 | <init> - 6 | 7 | 8 | 9 | 10 | com.agog.mathdisplay / MTFontManager / <init>
12 |
13 |

<init>

14 | MTFontManager() 16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay/-m-t-font-manager/assets.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTFontManager.assets - 5 | 6 | 7 | 8 | com.agog.mathdisplay / MTFontManager / assets
10 |
11 |

assets

12 | 13 | var assets: AssetManager? 16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay/-m-t-math-u-i-label-mode/-k-m-t-math-u-i-label-mode-display.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathUILabelMode.KMTMathUILabelModeDisplay - 5 | 6 | 7 | 8 | com.agog.mathdisplay / MTMathUILabelMode / KMTMathUILabelModeDisplay
11 |
12 |

KMTMathUILabelModeDisplay

13 | KMTMathUILabelModeDisplay 14 | 15 | 16 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay/-m-t-math-u-i-label-mode/-k-m-t-math-u-i-label-mode-text.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathUILabelMode.KMTMathUILabelModeText - 5 | 6 | 7 | 8 | com.agog.mathdisplay / MTMathUILabelMode / KMTMathUILabelModeText
11 |
12 |

KMTMathUILabelModeText

13 | KMTMathUILabelModeText 14 | 15 | 16 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay/-m-t-math-view/-m-t-math-u-i-label-mode/-k-m-t-math-u-i-label-mode-display.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathView.MTMathUILabelMode.KMTMathUILabelModeDisplay - 5 | 6 | 7 | 8 | com.agog.mathdisplay / MTMathView / MTMathUILabelMode / KMTMathUILabelModeDisplay
11 |
12 |

KMTMathUILabelModeDisplay

13 | KMTMathUILabelModeDisplay 14 | 15 | 16 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay/-m-t-math-view/-m-t-math-u-i-label-mode/-k-m-t-math-u-i-label-mode-text.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathView.MTMathUILabelMode.KMTMathUILabelModeText - 5 | 6 | 7 | 8 | com.agog.mathdisplay / MTMathView / MTMathUILabelMode / KMTMathUILabelModeText
11 |
12 |

KMTMathUILabelModeText

13 | KMTMathUILabelModeText 14 | 15 | 16 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay/-m-t-math-view/-m-t-math-view-mode/-k-m-t-math-view-mode-display.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathView.MTMathViewMode.KMTMathViewModeDisplay - 5 | 6 | 7 | 8 | com.agog.mathdisplay / MTMathView / MTMathViewMode / KMTMathViewModeDisplay
11 |
12 |

KMTMathViewModeDisplay

13 | KMTMathViewModeDisplay 14 | 15 | 16 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay/-m-t-math-view/-m-t-math-view-mode/-k-m-t-math-view-mode-text.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathView.MTMathViewMode.KMTMathViewModeText - 5 | 6 | 7 | 8 | com.agog.mathdisplay / MTMathView / MTMathViewMode / KMTMathViewModeText
11 |
12 |

KMTMathViewModeText

13 | KMTMathViewModeText 14 | 15 | 16 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay/-m-t-math-view/-m-t-text-alignment/-k-m-t-text-alignment-center.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathView.MTTextAlignment.KMTTextAlignmentCenter - 5 | 6 | 7 | 8 | com.agog.mathdisplay / MTMathView / MTTextAlignment / KMTTextAlignmentCenter
11 |
12 |

KMTTextAlignmentCenter

13 | KMTTextAlignmentCenter 14 | 15 | 16 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay/-m-t-math-view/-m-t-text-alignment/-k-m-t-text-alignment-left.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathView.MTTextAlignment.KMTTextAlignmentLeft - 5 | 6 | 7 | 8 | com.agog.mathdisplay / MTMathView / MTTextAlignment / KMTTextAlignmentLeft
11 |
12 |

KMTTextAlignmentLeft

13 | KMTTextAlignmentLeft 14 | 15 | 16 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay/-m-t-math-view/-m-t-text-alignment/-k-m-t-text-alignment-right.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathView.MTTextAlignment.KMTTextAlignmentRight - 5 | 6 | 7 | 8 | com.agog.mathdisplay / MTMathView / MTTextAlignment / KMTTextAlignmentRight
11 |
12 |

KMTTextAlignmentRight

13 | KMTTextAlignmentRight 14 | 15 | 16 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay/-m-t-math-view/font-size.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathView.fontSize - 5 | 6 | 7 | 8 | com.agog.mathdisplay / MTMathView / fontSize
10 |
11 |

fontSize

12 | 13 | var fontSize: Float 15 |

This is in device pixels. Default value is see KDefaultFontSize

16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay/-m-t-math-view/label-mode.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathView.labelMode - 5 | 6 | 7 | 8 | com.agog.mathdisplay / MTMathView / labelMode
10 |
11 |

labelMode

12 | 13 | var labelMode: MTMathViewMode 15 |

Should display or text mode be used.

16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay/-m-t-math-view/text-color.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTMathView.textColor - 5 | 6 | 7 | 8 | com.agog.mathdisplay / MTMathView / textColor
10 |
11 |

textColor

12 | 13 | var textColor: Int 15 |

Color of the equation if not overridden with local color changes by TeX commands

16 | 17 | 18 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay/-m-t-text-alignment/-k-m-t-text-alignment-center.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTTextAlignment.KMTTextAlignmentCenter - 5 | 6 | 7 | 8 | com.agog.mathdisplay / MTTextAlignment / KMTTextAlignmentCenter
11 |
12 |

KMTTextAlignmentCenter

13 | KMTTextAlignmentCenter 14 | 15 | 16 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay/-m-t-text-alignment/-k-m-t-text-alignment-left.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTTextAlignment.KMTTextAlignmentLeft - 5 | 6 | 7 | 8 | com.agog.mathdisplay / MTTextAlignment / KMTTextAlignmentLeft
10 |
11 |

KMTTextAlignmentLeft

12 | KMTTextAlignmentLeft 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay/-m-t-text-alignment/-k-m-t-text-alignment-right.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MTTextAlignment.KMTTextAlignmentRight - 5 | 6 | 7 | 8 | com.agog.mathdisplay / MTTextAlignment / KMTTextAlignmentRight
10 |
11 |

KMTTextAlignmentRight

12 | KMTTextAlignmentRight 13 | 14 | 15 | -------------------------------------------------------------------------------- /mathdisplaylib/doc/com.agog.mathdisplay/k-default-font-size.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | kDefaultFontSize - 5 | 6 | 7 | 8 | com.agog.mathdisplay / kDefaultFontSize
9 |
10 |

kDefaultFontSize

11 | 12 | const val kDefaultFontSize: Float 14 | 15 | 16 | -------------------------------------------------------------------------------- /mathdisplaylib/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /mathdisplaylib/src/main/assets/fonts/latinmodern-math.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregcockroft/AndroidMath/5e0f60bac9daaefbab7df96f4501c0209700418b/mathdisplaylib/src/main/assets/fonts/latinmodern-math.otf -------------------------------------------------------------------------------- /mathdisplaylib/src/main/assets/fonts/texgyretermes-math.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregcockroft/AndroidMath/5e0f60bac9daaefbab7df96f4501c0209700418b/mathdisplaylib/src/main/assets/fonts/texgyretermes-math.otf -------------------------------------------------------------------------------- /mathdisplaylib/src/main/assets/fonts/xits-math.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregcockroft/AndroidMath/5e0f60bac9daaefbab7df96f4501c0209700418b/mathdisplaylib/src/main/assets/fonts/xits-math.otf -------------------------------------------------------------------------------- /mathdisplaylib/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | cmake_minimum_required(VERSION 3.4.1) 5 | 6 | add_library( # Sets the name of the library. 7 | main 8 | 9 | # Sets the library as a shared library. 10 | SHARED 11 | 12 | # Provides a relative path to your source file(s). 13 | # Associated headers in the same location as their source 14 | # file are automatically included. 15 | freetype_jni.cpp 16 | ) 17 | 18 | find_package(cdep-dependencies REQUIRED) 19 | add_all_cdep_dependencies(main) 20 | 21 | target_link_libraries(main log android) 22 | -------------------------------------------------------------------------------- /mathdisplaylib/src/main/java/com/pvporbit/freetype/CharMap.java: -------------------------------------------------------------------------------- 1 | package com.pvporbit.freetype; 2 | 3 | import com.pvporbit.freetype.Utils.Pointer; 4 | 5 | public class CharMap extends Pointer { 6 | 7 | public CharMap(long pointer) { 8 | super(pointer); 9 | } 10 | 11 | public static int getCharmapIndex(CharMap charmap) { 12 | return FreeType.FT_Get_Charmap_Index(charmap.getPointer()); 13 | } 14 | } -------------------------------------------------------------------------------- /mathdisplaylib/src/main/java/com/pvporbit/freetype/Kerning.java: -------------------------------------------------------------------------------- 1 | package com.pvporbit.freetype; 2 | 3 | public class Kerning { 4 | 5 | private final int x, y; 6 | 7 | public Kerning(int x, int y) { 8 | this.x = x; 9 | this.y = y; 10 | } 11 | 12 | public int getHorizontalKerning() { 13 | return x; 14 | } 15 | 16 | public int getVerticalKerning() { 17 | return y; 18 | } 19 | 20 | @Override 21 | public String toString() { 22 | return "Kerning(" + x + ", " + y + ")"; 23 | } 24 | } -------------------------------------------------------------------------------- /mathdisplaylib/src/main/java/com/pvporbit/freetype/Size.java: -------------------------------------------------------------------------------- 1 | package com.pvporbit.freetype; 2 | 3 | import com.pvporbit.freetype.Utils.Pointer; 4 | 5 | public class Size extends Pointer { 6 | 7 | public Size(long pointer) { 8 | super(pointer); 9 | } 10 | 11 | public SizeMetrics getMetrics() { 12 | long sizeMetrics = FreeType.FT_Size_Get_metrics(pointer); 13 | if (sizeMetrics <= 0) 14 | return null; 15 | return new SizeMetrics(sizeMetrics); 16 | } 17 | } -------------------------------------------------------------------------------- /mathdisplaylib/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | AndroidMath 3 | 4 | -------------------------------------------------------------------------------- /sampleapp/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /sampleapp/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /sampleapp/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /sampleapp/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregcockroft/AndroidMath/5e0f60bac9daaefbab7df96f4501c0209700418b/sampleapp/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /sampleapp/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregcockroft/AndroidMath/5e0f60bac9daaefbab7df96f4501c0209700418b/sampleapp/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sampleapp/src/main/res/mipmap-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregcockroft/AndroidMath/5e0f60bac9daaefbab7df96f4501c0209700418b/sampleapp/src/main/res/mipmap-hdpi/icon.png -------------------------------------------------------------------------------- /sampleapp/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregcockroft/AndroidMath/5e0f60bac9daaefbab7df96f4501c0209700418b/sampleapp/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /sampleapp/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregcockroft/AndroidMath/5e0f60bac9daaefbab7df96f4501c0209700418b/sampleapp/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sampleapp/src/main/res/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregcockroft/AndroidMath/5e0f60bac9daaefbab7df96f4501c0209700418b/sampleapp/src/main/res/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /sampleapp/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregcockroft/AndroidMath/5e0f60bac9daaefbab7df96f4501c0209700418b/sampleapp/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sampleapp/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregcockroft/AndroidMath/5e0f60bac9daaefbab7df96f4501c0209700418b/sampleapp/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sampleapp/src/main/res/mipmap-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregcockroft/AndroidMath/5e0f60bac9daaefbab7df96f4501c0209700418b/sampleapp/src/main/res/mipmap-xhdpi/icon.png -------------------------------------------------------------------------------- /sampleapp/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregcockroft/AndroidMath/5e0f60bac9daaefbab7df96f4501c0209700418b/sampleapp/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sampleapp/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregcockroft/AndroidMath/5e0f60bac9daaefbab7df96f4501c0209700418b/sampleapp/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sampleapp/src/main/res/mipmap-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregcockroft/AndroidMath/5e0f60bac9daaefbab7df96f4501c0209700418b/sampleapp/src/main/res/mipmap-xxhdpi/icon.png -------------------------------------------------------------------------------- /sampleapp/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregcockroft/AndroidMath/5e0f60bac9daaefbab7df96f4501c0209700418b/sampleapp/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sampleapp/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregcockroft/AndroidMath/5e0f60bac9daaefbab7df96f4501c0209700418b/sampleapp/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sampleapp/src/main/res/mipmap-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregcockroft/AndroidMath/5e0f60bac9daaefbab7df96f4501c0209700418b/sampleapp/src/main/res/mipmap-xxxhdpi/icon.png -------------------------------------------------------------------------------- /sampleapp/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /sampleapp/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | -------------------------------------------------------------------------------- /sampleapp/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | AndroidMath 3 | Settings 4 | Settings 2 5 | 6 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':mathdisplaylib', ':sampleapp' 2 | 3 | --------------------------------------------------------------------------------