Added gradient calculation

This commit is contained in:
2025-04-03 22:56:03 +02:00
parent 33bf3d6833
commit 11729f67e5
5 changed files with 2247 additions and 2 deletions

View File

@ -3,6 +3,8 @@ from . import views
urlpatterns = [
path('', views.home, name='home'),
path('result/', views.result, name='result'),
path('sfg', views.sfg, name='sfg'),
path('position/', views.position, name='position'),
]