Archived
1

Add Root Function and Product Function

This commit is contained in:
Kim Wittenburg
2017-08-31 00:04:21 +02:00
parent 43b907ba88
commit 3681e1416c
18 changed files with 864 additions and 0 deletions

42
MathKit/MPRootFunctionLayout.h Executable file
View File

@@ -0,0 +1,42 @@
//
// MPRootFunctionLayout.h
// MathPad
//
// Created by Kim Wittenburg on 11.01.15.
// Copyright (c) 2015 Kim Wittenburg. All rights reserved.
//
#import "MPFunctionLayout.h"
/*!
@header
This file contains the <code>MPRootFunctionLayout</code> class.
*/
@class MPRootFunctionLayout, MPRootFunction;
/*!
@class MPRootFunctionLayout
@abstract A root function layout displays a <code>@link
//apple_ref/occ/cl/MPRootFunction@/link</code>.
@discussion A root function is displayed in a very special way. In a way it
can be described as an exponent at the left, a "V" in the middle
and the expression that is to be rooted at the right with a bar
over it.
*/
@interface MPRootFunctionLayout : MPFunctionLayout
/*!
@method rootFunction
@abstract Returns the <code>@link
//apple_ref/occ/cl/MPRootFunction@/link</code> represented by the
receiver.
*/
- (MPRootFunction *)rootFunction;
@end