This commit is contained in:
Ali 2019-12-04 22:48:21 +03:00
commit 1971df0836
24 changed files with 1091 additions and 8 deletions

38
.github/ISSUE_TEMPLATE/bug_report.md vendored Normal file
View File

@ -0,0 +1,38 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''
---
**Describe the bug**
A clear and concise description of what the bug is.
**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
**Expected behavior**
A clear and concise description of what you expected to happen.
**Screenshots**
If applicable, add screenshots to help explain your problem.
**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]
**Smartphone (please complete the following information):**
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]
**Additional context**
Add any other context about the problem here.

View File

@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ''
assignees: ''
---
**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
**Describe the solution you'd like**
A clear and concise description of what you want to happen.
**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.
**Additional context**
Add any other context or screenshots about the feature request here.

9
.gitignore vendored
View File

@ -1,5 +1,6 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.pyc
*.py[cod]
*$py.class
@ -24,7 +25,6 @@ wheels/
.installed.cfg
*.egg
MANIFEST
# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
@ -102,3 +102,10 @@ venv.bak/
# mypy
.mypy_cache/
# Misc
*.swp
compiledUI/
# editor configs
.vscode

76
CODE_OF_CONDUCT.md Normal file
View File

@ -0,0 +1,76 @@
# Contributor Covenant Code of Conduct
## Our Pledge
In the interest of fostering an open and welcoming environment, we as
contributors and maintainers pledge to making participation in our project and
our community a harassment-free experience for everyone, regardless of age, body
size, disability, ethnicity, sex characteristics, gender identity and expression,
level of experience, education, socio-economic status, nationality, personal
appearance, race, religion, or sexual identity and orientation.
## Our Standards
Examples of behavior that contributes to creating a positive environment
include:
* Using welcoming and inclusive language
* Being respectful of differing viewpoints and experiences
* Gracefully accepting constructive criticism
* Focusing on what is best for the community
* Showing empathy towards other community members
Examples of unacceptable behavior by participants include:
* The use of sexualized language or imagery and unwelcome sexual attention or
advances
* Trolling, insulting/derogatory comments, and personal or political attacks
* Public or private harassment
* Publishing others' private information, such as a physical or electronic
address, without explicit permission
* Other conduct which could reasonably be considered inappropriate in a
professional setting
## Our Responsibilities
Project maintainers are responsible for clarifying the standards of acceptable
behavior and are expected to take appropriate and fair corrective action in
response to any instances of unacceptable behavior.
Project maintainers have the right and responsibility to remove, edit, or
reject comments, commits, code, wiki edits, issues, and other contributions
that are not aligned to this Code of Conduct, or to ban temporarily or
permanently any contributor for other behaviors that they deem inappropriate,
threatening, offensive, or harmful.
## Scope
This Code of Conduct applies both within project spaces and in public spaces
when an individual is representing the project or its community. Examples of
representing a project or community include using an official project e-mail
address, posting via an official social media account, or acting as an appointed
representative at an online or offline event. Representation of a project may be
further defined and clarified by project maintainers.
## Enforcement
Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported by contacting the project team at ayhamaboualfadl@gmail.com. All
complaints will be reviewed and investigated and will result in a response that
is deemed necessary and appropriate to the circumstances. The project team is
obligated to maintain confidentiality with regard to the reporter of an incident.
Further details of specific enforcement policies may be posted separately.
Project maintainers who do not follow or enforce the Code of Conduct in good
faith may face temporary or permanent repercussions as determined by other
members of the project's leadership.
## Attribution
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
[homepage]: https://www.contributor-covenant.org
For answers to common questions about this code of conduct, see
https://www.contributor-covenant.org/faq

1
CONTRIBUTORS.md Normal file
View File

@ -0,0 +1 @@
<br/>realaltffour, [Profile](https://api.github.com/users/realaltffour). Made {counter} commits. <br/><br/>AliAlboainin96, [Profile](https://api.github.com/users/AliAlboainin96). Made {counter} commits. <br/><br/>TriptSharma, [Profile](https://api.github.com/users/TriptSharma). Made {counter} commits. <br/><br/>README1ST, [Profile](https://api.github.com/users/README1ST). Made {counter} commits. <br/><br/>xypnox, [Profile](https://api.github.com/users/xypnox). Made {counter} commits. <br/><br/>bjornwelboren, [Profile](https://api.github.com/users/bjornwelboren). Made {counter} commits. <br/><br/>GiuB, [Profile](https://api.github.com/users/GiuB). Made {counter} commits. <br/><br/>omikhailk, [Profile](https://api.github.com/users/omikhailk). Made {counter} commits. <br/>

View File

@ -1,2 +1,2 @@
# GraphSolver
An application for solving linear, quadratic graphs.
An application for solving linear/quadratic graphs.

13
app.py Normal file
View File

@ -0,0 +1,13 @@
from PyQt5 import QtWidgets
from ui.mainWindow import mainWin
def main():
app = QtWidgets.QApplication([])
window = mainWin()
app.exec_()
exit(0)
if __name__ == '__main__':
main()

15
buildUI.py Normal file
View File

@ -0,0 +1,15 @@
import os
from os.path import isfile, join
from os import listdir
cwd = os.getcwd() + "/"
ui_files = [f for f in listdir("ui/") if isfile(join("ui/", f))]
ui_py = {x.replace('.ui', '.py') for x in ui_files}
if not os.path.exists("compiledUI"):
os.makedirs("compiledUI")
for ui, uipy in zip(ui_files, ui_py):
os.system("pyuic5 " + cwd + "ui/" + ui + " -o" + " compiledUI/" + uipy)

3
clean.sh Normal file
View File

@ -0,0 +1,3 @@
#!/bin/bash
rm -rf compiledUI

31
commits.py Normal file
View File

@ -0,0 +1,31 @@
import requests
def get_user_info():
URL = "https://api.github.com/repos/realaltffour/GraphSolver/contributors"
r = requests.get(URL)
r = r.json()
for contributor in r:
get_user_commits(contributor['login'], contributor['url'])
def get_user_commits(login, github_profile):
URL = "https://api.github.com/repos/realaltffour/GraphSolver/commits"
# Filter by login
r = requests.get(URL, {'author': login})
r = r.json()
with open('CONTRIBUTORS.md', 'a') as contributor_file:
counter = 0
for commits_by_user in r:
counter += 1
contributor_file.write(
f"<br/>{login}, [Profile]({github_profile})."
" Made {counter} commits. <br/>"
)
contributor_file.close()
get_user_info()

View File

@ -0,0 +1,33 @@
import math
class Linear:
def __init__(self, a, c, length):
self.a = a
self.c = c
self.length = length
def calc_linear_line(self):
return [(0 - self.length, self.a * (0 - self.length)),
(0 - self.length, self.a * self.length)]
def calcLinearIntersection(self, line):
"""
This function accepts one line of Linear class
and returns the coordinates of intersection
between the self and the line passed
If there is no intercept it returns 0
If there are infinite intercepts it return math.inf
If there is one unique intercept it returns a tuple with (x, y)
"""
if self.a == line.a:
if self.c == line.c:
return math.inf
return 0
x = (line.c - self.c) / (self.a - line.a)
y = self.a * (line.c - self.c) / (self.a - line.a) + self.c
return (x, y)

View File

@ -0,0 +1,28 @@
import math
class LinearIntercept:
def __init__(self, a, c):
# Line eq: y = ax + c
self.a = a
self.c = c
def calcLinearIntersection(self, line):
"""
This function accepts two lines of Linear class
and returns the coordinates of intersection between the two lines
If there is no intercept it returns 0
If there are infinite intercepts it return math.inf
If there is one unique intercept it returns a tuple with (x, y)
"""
if self.a == line.a:
if self.c == line.c:
return math.inf
return 0
x = (line.c-self.c)/(self.a - line.a)
y = self.a*(line.c - self.c)/(self.a - line.a) + self.c
return (x, y)

13
requirements.txt Normal file
View File

@ -0,0 +1,13 @@
PyQt5==5.13.1
requests==2.22.0
=======
from PyQt5.QtWidgets import *
from PyQt5.QtGui import *
from PyQt5.QtCore import *
from linear import *
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import sys

View File

@ -1,9 +1,19 @@
from setuptools import setup
from setuptools import setup, find_packages
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name='GraphSolver',
version='1.0',
description='Algebric equation solver displayed on graph.',
author='Ali, Ayham',
packages=['PyAlgebra']
name='GraphSolver',
version='0.0.1',
description='An application for solving linear/quadratic graphs.',
long_description=readme,
author='altf_four',
author_email='ayhamaboualfadl@gmail.com',
url='https://github.com/realaltffour/GraphSolver',
license=license,
packages=find_packages(exclude=('tests', 'docs'))
)

View File

@ -0,0 +1,38 @@
from PyQt5 import QtWidgets, uic
class linearInterceptWin(QtWidgets.QMainWindow):
def __init__(self):
super(linearInterceptWin, self).__init__()
self.ui = uic.loadUi("ui/linearInterceptWindow.ui", self)
# Get calcBtn, and connect it to stuff.
self.calcBtn = self.findChild(QtWidgets.QPushButton, "calcBtn")
self.calcBtn.clicked.connect(self.calcBtnPressed)
# Get line1mBox
self.line1mBox = self.findChild(QtWidgets.QLineEdit, "line1mBox")
# Get line1cBox
self.line1cBox = self.findChild(QtWidgets.QLineEdit, "line1cBox")
# Get line2mBox
self.line2mBox = self.findChild(QtWidgets.QLineEdit, "line2mBox")
# Get line2cBox
self.line2cBox = self.findChild(QtWidgets.QLineEdit, "line2cBox")
# Get resultXBox
self.resultXBox = self.findChild(QtWidgets.QLineEdit, "resultXBox")
# Get resultYBox
self.resultYBox = self.findChild(QtWidgets.QLineEdit, "resultYBox")
self.ui.show()
def calcBtnPressed(self):
m1 = int(self.line1mBox.text())
c1 = int(self.line1cBox.text())
m2 = int(self.line2mBox.text())
c2 = int(self.line2cBox.text())
x = (c2 - c1) / (m1 - m2)
y = m1 * x + c1
self.resultXBox.setText(str(x))
self.resultYBox.setText(str(y))

158
ui/linearInterceptWindow.ui Normal file
View File

@ -0,0 +1,158 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>linearInterceptWin</class>
<widget class="QMainWindow" name="linearInterceptWin">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>399</width>
<height>158</height>
</rect>
</property>
<property name="windowTitle">
<string>MainWindow</string>
</property>
<widget class="QWidget" name="centralwidget">
<widget class="QWidget" name="layoutWidget">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>391</width>
<height>121</height>
</rect>
</property>
<layout class="QGridLayout" name="gridLayout">
<item row="0" column="0">
<widget class="QGroupBox" name="groupBox">
<property name="title">
<string>Line 1</string>
</property>
<widget class="QWidget" name="layoutWidget">
<property name="geometry">
<rect>
<x>0</x>
<y>20</y>
<width>167</width>
<height>58</height>
</rect>
</property>
<layout class="QGridLayout" name="gridLayout_2">
<item row="0" column="0">
<widget class="QLabel" name="label">
<property name="text">
<string>m:</string>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="QLineEdit" name="line1mBox"/>
</item>
<item row="1" column="0">
<widget class="QLabel" name="label_2">
<property name="text">
<string>c:</string>
</property>
</widget>
</item>
<item row="1" column="1">
<widget class="QLineEdit" name="line1cBox"/>
</item>
</layout>
</widget>
</widget>
</item>
<item row="0" column="1">
<widget class="QGroupBox" name="groupBox_2">
<property name="title">
<string>Line 2</string>
</property>
<widget class="QWidget" name="layoutWidget">
<property name="geometry">
<rect>
<x>0</x>
<y>20</y>
<width>167</width>
<height>58</height>
</rect>
</property>
<layout class="QGridLayout" name="gridLayout_3">
<item row="0" column="0">
<widget class="QLabel" name="label_3">
<property name="text">
<string>m:</string>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="QLineEdit" name="line2mBox"/>
</item>
<item row="1" column="0">
<widget class="QLabel" name="label_4">
<property name="text">
<string>c:</string>
</property>
</widget>
</item>
<item row="1" column="1">
<widget class="QLineEdit" name="line2cBox"/>
</item>
</layout>
</widget>
</widget>
</item>
<item row="1" column="0" colspan="2">
<widget class="QPushButton" name="calcBtn">
<property name="text">
<string>Calculate</string>
</property>
</widget>
</item>
</layout>
</widget>
<widget class="QWidget" name="layoutWidget">
<property name="geometry">
<rect>
<x>30</x>
<y>120</y>
<width>331</width>
<height>27</height>
</rect>
</property>
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
<widget class="QLabel" name="label_5">
<property name="text">
<string>X:</string>
</property>
</widget>
</item>
<item>
<widget class="QLineEdit" name="resultXBox">
<property name="readOnly">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="label_6">
<property name="text">
<string>Y:</string>
</property>
</widget>
</item>
<item>
<widget class="QLineEdit" name="resultYBox">
<property name="readOnly">
<bool>true</bool>
</property>
</widget>
</item>
</layout>
</widget>
</widget>
</widget>
<resources/>
<connections/>
</ui>

35
ui/linearWindow.py Normal file
View File

@ -0,0 +1,35 @@
from PyQt5 import QtWidgets, uic
import matplotlib.pyplot as plt
import numpy as np
class linearWin(QtWidgets.QMainWindow):
m = 0.0
c = 0.0
def __init__(self):
super(linearWin, self).__init__()
self.ui = uic.loadUi("ui/linearWindow.ui", self)
# Get calcBtn, and connect it to stuff.
self.calcBtn = self.findChild(QtWidgets.QPushButton, "calcBtn")
self.calcBtn.clicked.connect(self.calcBtnPressed)
# Get mBox, and connect it to stuff.
self.mBox = self.findChild(QtWidgets.QLineEdit, "mBox")
# Get cBox, and connect it to stuff.
self.cBox = self.findChild(QtWidgets.QLineEdit, "cBox")
self.ui.show()
def calcBtnPressed(self):
m = int(self.mBox.text())
c = int(self.cBox.text())
x = np.linspace(-5, 5, 100)
y = m * x + c
plt.plot(x, y, '-r', label='y=' + str(m) + 'x' + '+' + str(c))
plt.title("Graph of y=" + str(m) + "x" + "+" + str(c))
plt.xlabel('x', color='#1C2833')
plt.ylabel('y', color='#1C2833')
plt.legend(loc="upper left")
plt.show()

91
ui/linearWindow.ui Normal file
View File

@ -0,0 +1,91 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>linearWin</class>
<widget class="QMainWindow" name="linearWin">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>165</width>
<height>140</height>
</rect>
</property>
<property name="windowTitle">
<string>Linear</string>
</property>
<widget class="QWidget" name="centralwidget">
<widget class="QLineEdit" name="cBox">
<property name="geometry">
<rect>
<x>30</x>
<y>50</y>
<width>121</width>
<height>20</height>
</rect>
</property>
</widget>
<widget class="QLineEdit" name="mBox">
<property name="geometry">
<rect>
<x>30</x>
<y>10</y>
<width>121</width>
<height>20</height>
</rect>
</property>
</widget>
<widget class="QLabel" name="label">
<property name="geometry">
<rect>
<x>4</x>
<y>10</y>
<width>31</width>
<height>20</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>16</pointsize>
</font>
</property>
<property name="text">
<string>m:</string>
</property>
</widget>
<widget class="QLabel" name="label_2">
<property name="geometry">
<rect>
<x>4</x>
<y>50</y>
<width>31</width>
<height>21</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>16</pointsize>
</font>
</property>
<property name="text">
<string>c:</string>
</property>
</widget>
<widget class="QPushButton" name="calcBtn">
<property name="geometry">
<rect>
<x>30</x>
<y>90</y>
<width>91</width>
<height>21</height>
</rect>
</property>
<property name="text">
<string>Calculate</string>
</property>
</widget>
</widget>
<widget class="QStatusBar" name="statusbar"/>
</widget>
<resources/>
<connections/>
</ui>

37
ui/mainWindow.py Normal file
View File

@ -0,0 +1,37 @@
from PyQt5 import QtWidgets, uic
from ui.linearWindow import linearWin
from ui.linearInterceptWindow import linearInterceptWin
from ui.quadraticWindow import quadraticWin
from ui.quadraticInterceptWindow import quadraticInterceptWin
class mainWin(QtWidgets.QMainWindow):
equval = "Linear"
def __init__(self):
super(mainWin, self).__init__()
self.ui = uic.loadUi("ui/mainWindow.ui", self)
# Get runBtn, and connect it to stuff.
self.runBtn = self.findChild(QtWidgets.QPushButton, "runBtn")
self.runBtn.clicked.connect(self.runBtnPressed)
# Get equCbo, and connect it to stuff.
self.equCbo = self.findChild(QtWidgets.QComboBox, "equCbo")
self.equCbo.activated[str].connect(self.onEquCboChanged)
self.ui.show()
def runBtnPressed(self):
print(self.equval)
if self.equval == "Linear":
linearWin()
elif self.equval == "LinearIntercept":
linearInterceptWin()
elif self.equval == "Quadratic":
quadraticWin()
elif self.equval == "QuadraticIntercept":
quadraticInterceptWin()
def onEquCboChanged(self, text):
self.equval = text

94
ui/mainWindow.ui Normal file
View File

@ -0,0 +1,94 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>MainWindow</class>
<widget class="QMainWindow" name="MainWindow">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>251</width>
<height>200</height>
</rect>
</property>
<property name="minimumSize">
<size>
<width>0</width>
<height>0</height>
</size>
</property>
<property name="baseSize">
<size>
<width>265</width>
<height>225</height>
</size>
</property>
<property name="windowTitle">
<string>GraphSolver</string>
</property>
<property name="windowIcon">
<iconset>
<normaloff>../Icons/bar-graph-on-a-rectangle.png</normaloff>../Icons/bar-graph-on-a-rectangle.png</iconset>
</property>
<widget class="QWidget" name="centralwidget">
<widget class="QComboBox" name="equCbo">
<property name="geometry">
<rect>
<x>30</x>
<y>70</y>
<width>191</width>
<height>31</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>14</pointsize>
</font>
</property>
<item>
<property name="text">
<string>Linear</string>
</property>
</item>
<item>
<property name="text">
<string>LinearIntercept</string>
</property>
</item>
<item>
<property name="text">
<string>Quadratic</string>
</property>
</item>
<item>
<property name="text">
<string>QuadraticIntercept</string>
</property>
</item>
</widget>
<widget class="QPushButton" name="runBtn">
<property name="geometry">
<rect>
<x>80</x>
<y>110</y>
<width>100</width>
<height>25</height>
</rect>
</property>
<property name="text">
<string>Run</string>
</property>
<property name="autoDefault">
<bool>true</bool>
</property>
<property name="default">
<bool>false</bool>
</property>
<property name="flat">
<bool>false</bool>
</property>
</widget>
</widget>
</widget>
<resources/>
<connections/>
</ui>

View File

@ -0,0 +1,77 @@
from PyQt5 import QtWidgets, uic
import math
class quadraticInterceptWin(QtWidgets.QMainWindow):
def __init__(self):
super(quadraticInterceptWin, self).__init__()
self.ui = uic.loadUi("ui/quadraticInterceptWindow.ui", self)
# Get calcBtn, and connect it to stuff.
self.calcBtn = self.findChild(QtWidgets.QPushButton, "calcBtn")
self.calcBtn.clicked.connect(self.calcBtnPressed)
# Get line1aBox
self.line1aBox = self.findChild(QtWidgets.QLineEdit, "line1aBox")
# Get line1bBox
self.line1bBox = self.findChild(QtWidgets.QLineEdit, "line1bBox")
# Get line1cBox
self.line1cBox = self.findChild(QtWidgets.QLineEdit, "line1cBox")
# Get line2aBox
self.line2aBox = self.findChild(QtWidgets.QLineEdit, "line2aBox")
# Get line2bBox
self.line2bBox = self.findChild(QtWidgets.QLineEdit, "line2bBox")
# Get line2cBox
self.line2cBox = self.findChild(QtWidgets.QLineEdit, "line2cBox")
# Get resultBox
self.resultBox = self.findChild(QtWidgets.QTextEdit, "resultBox")
self.ui.show()
def calcBtnPressed(self):
a1 = int(self.line1aBox.text())
b1 = int(self.line1bBox.text())
c1 = int(self.line1cBox.text())
a2 = int(self.line2aBox.text())
b2 = int(self.line2bBox.text())
c2 = int(self.line2cBox.text())
a = a2 - a1
b = b2 - b1
c = c2 - c1
if a == 0.0 and b == 0.0 and c == 0.0:
self.resultBox.append(
"These Two parabolas are the same \n All points interset.")
return
if a == 0.0:
if b == 0.0:
self.resultBox.append("These two parabolas do not intersect.")
return
else:
x1 = -c / b
y1 = a1 * x1 * x1 + b1 * x1 + c1
self.resutlBox.append("One Intersect: \n (x: " + str(x1) +
", y:" + str(y1))
return
discriminant = b * b - 4 * a * c
if discriminant < 0.0:
self.resutlBox.append("These two parabolas do not intersect.")
return
elif discriminant == 0.0:
x1 = -b / (2 * a)
y1 = a1 * x1 * x1 + b1 * x1 + c1
self.resutlBox.append("One Intersect: \n (x: " + str(x1) + ", y:" +
str(y1))
else:
x1 = (-b + math.sqrt(discriminant)) / (2 * a)
y1 = a1 * x1 * x1 + b1 * x1 + c1
x2 = (-b - math.sqrt(discriminant)) / (2 * a)
y2 = a1 * x2 * x2 + b1 * x2 + c1
self.resutlBox.append("Two Intersect: \n 1. (x: " + str(x1) +
", y: " + str(y1) + "\n 2. (x: " + str(x2) +
", y: " + str(y2))

View File

@ -0,0 +1,155 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>quadraticInterceptWin</class>
<widget class="QMainWindow" name="quadraticInterceptWin">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>386</width>
<height>266</height>
</rect>
</property>
<property name="windowTitle">
<string>Quadratic Intercept</string>
</property>
<widget class="QWidget" name="centralwidget">
<widget class="QWidget" name="layoutWidget">
<property name="geometry">
<rect>
<x>0</x>
<y>10</y>
<width>381</width>
<height>161</height>
</rect>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
<widget class="QGroupBox" name="groupBox">
<property name="title">
<string>Line 1</string>
</property>
<widget class="QWidget" name="layoutWidget">
<property name="geometry">
<rect>
<x>10</x>
<y>30</y>
<width>163</width>
<height>89</height>
</rect>
</property>
<layout class="QGridLayout" name="gridLayout">
<item row="0" column="0">
<widget class="QLabel" name="label">
<property name="text">
<string>a:</string>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="QLineEdit" name="line1aBox"/>
</item>
<item row="1" column="0">
<widget class="QLabel" name="label_2">
<property name="text">
<string>b:</string>
</property>
</widget>
</item>
<item row="1" column="1">
<widget class="QLineEdit" name="line1bBox"/>
</item>
<item row="2" column="0">
<widget class="QLabel" name="label_3">
<property name="text">
<string>c:</string>
</property>
</widget>
</item>
<item row="2" column="1">
<widget class="QLineEdit" name="line1cBox"/>
</item>
</layout>
</widget>
</widget>
</item>
<item>
<widget class="QGroupBox" name="groupBox_2">
<property name="title">
<string>Line 2</string>
</property>
<widget class="QWidget" name="layoutWidget">
<property name="geometry">
<rect>
<x>10</x>
<y>30</y>
<width>163</width>
<height>89</height>
</rect>
</property>
<layout class="QGridLayout" name="gridLayout_2">
<item row="0" column="0">
<widget class="QLabel" name="label_4">
<property name="text">
<string>a:</string>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="QLineEdit" name="line2aBox"/>
</item>
<item row="1" column="0">
<widget class="QLabel" name="label_5">
<property name="text">
<string>b:</string>
</property>
</widget>
</item>
<item row="1" column="1">
<widget class="QLineEdit" name="line2bBox"/>
</item>
<item row="2" column="0">
<widget class="QLabel" name="label_6">
<property name="text">
<string>c:</string>
</property>
</widget>
</item>
<item row="2" column="1">
<widget class="QLineEdit" name="line2cBox"/>
</item>
</layout>
</widget>
</widget>
</item>
</layout>
</item>
<item>
<widget class="QPushButton" name="calcBtn">
<property name="text">
<string>Calculate</string>
</property>
</widget>
</item>
</layout>
</widget>
<widget class="QTextEdit" name="resultBox">
<property name="geometry">
<rect>
<x>40</x>
<y>180</y>
<width>301</width>
<height>70</height>
</rect>
</property>
<property name="readOnly">
<bool>true</bool>
</property>
</widget>
</widget>
</widget>
<resources/>
<connections/>
</ui>

36
ui/quadraticWindow.py Normal file
View File

@ -0,0 +1,36 @@
from PyQt5 import QtWidgets, uic
import matplotlib.pyplot as plt
import numpy as np
class quadraticWin(QtWidgets.QMainWindow):
def __init__(self):
super(quadraticWin, self).__init__()
self.ui = uic.loadUi("ui/quadraticWindow.ui", self)
# Get calcBtn, and connect it to stuff.
self.calcBtn = self.findChild(QtWidgets.QPushButton, "calcBtn")
self.calcBtn.clicked.connect(self.calcBtnPressed)
# Get aBox, and connect it to stuff.
self.aBox = self.findChild(QtWidgets.QLineEdit, "aBox")
# Get bBox, and connect it to stuff.
self.bBox = self.findChild(QtWidgets.QLineEdit, "bBox")
# Get cBox, and connect it to stuff.
self.cBox = self.findChild(QtWidgets.QLineEdit, "cBox")
self.ui.show()
def calcBtnPressed(self):
a = int(self.aBox.text())
b = int(self.bBox.text())
c = int(self.cBox.text())
x = np.linspace(-5, 5, 100)
y = a * x**2 + b * x + c
graph = str(a) + 'x^2 + ' + str(b) + '*x + ' + str(c)
plt.plot(x, y, '-r', label=graph)
plt.title("Graph of " + graph)
plt.xlabel('x', color='#1C2833')
plt.ylabel('y', color='#1C2833')
plt.legend(loc="upper left")
plt.show()

74
ui/quadraticWindow.ui Normal file
View File

@ -0,0 +1,74 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>quadraticWindow</class>
<widget class="QMainWindow" name="quadraticWindow">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>187</width>
<height>164</height>
</rect>
</property>
<property name="windowTitle">
<string>Quadratic Line</string>
</property>
<widget class="QWidget" name="centralwidget">
<widget class="QWidget" name="">
<property name="geometry">
<rect>
<x>10</x>
<y>10</y>
<width>165</width>
<height>145</height>
</rect>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<layout class="QGridLayout" name="gridLayout">
<item row="1" column="1">
<widget class="QLineEdit" name="bBox"/>
</item>
<item row="1" column="0">
<widget class="QLabel" name="label_2">
<property name="text">
<string>b:</string>
</property>
</widget>
</item>
<item row="2" column="0">
<widget class="QLabel" name="label_3">
<property name="text">
<string>c:</string>
</property>
</widget>
</item>
<item row="2" column="1">
<widget class="QLineEdit" name="cBox"/>
</item>
<item row="0" column="0">
<widget class="QLabel" name="label">
<property name="text">
<string>a:</string>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="QLineEdit" name="aBox"/>
</item>
</layout>
</item>
<item>
<widget class="QPushButton" name="calcBtn">
<property name="text">
<string>Calculate</string>
</property>
</widget>
</item>
</layout>
</widget>
</widget>
</widget>
<resources/>
<connections/>
</ui>