Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
UltimateZoneBuilder
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alam Ed Arias
UltimateZoneBuilder
Commits
f606f3bd
Commit
f606f3bd
authored
5 years ago
by
biwa
Browse files
Options
Downloads
Patches
Plain Diff
Drawing slope handles works correctly now
parent
1b79d9f6
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Source/Core/Rendering/VisualSlopeHandle.cs
+6
-6
6 additions, 6 deletions
Source/Core/Rendering/VisualSlopeHandle.cs
Source/Core/VisualModes/VisualSlope.cs
+4
-3
4 additions, 3 deletions
Source/Core/VisualModes/VisualSlope.cs
with
10 additions
and
9 deletions
Source/Core/Rendering/VisualSlopeHandle.cs
+
6
−
6
View file @
f606f3bd
...
...
@@ -56,13 +56,13 @@ namespace CodeImp.DoomBuilder.Rendering
// (when resized or display adapter was changed)
public
void
ReloadResource
()
{
WorldVertex
v0
=
new
WorldVertex
(
0.0f
,
0
.0f
,
0.5f
);
WorldVertex
v1
=
new
WorldVertex
(
1
.0f
,
0.0f
,
0.5f
);
WorldVertex
v2
=
new
WorldVertex
(
1.0f
,
8
.0f
,
0.5f
);
WorldVertex
v3
=
new
WorldVertex
(
0
.0f
,
8.0f
,
0.5f
);
WorldVertex
v0
=
new
WorldVertex
(
0.0f
,
-
8
.0f
,
0.5f
);
WorldVertex
v1
=
new
WorldVertex
(
0
.0f
,
0.0f
,
0.5f
);
WorldVertex
v2
=
new
WorldVertex
(
1.0f
,
0
.0f
,
0.5f
);
WorldVertex
v3
=
new
WorldVertex
(
1
.0f
,
-
8.0f
,
0.5f
);
v
0
.
c
=
v
1
.
c
=
PixelColor
.
INT_WHITE
;
v
2
.
c
=
v3
.
c
=
PixelColor
.
INT_WHITE_NO_ALPHA
;
v
1
.
c
=
v
2
.
c
=
PixelColor
.
INT_WHITE
;
v
0
.
c
=
v3
.
c
=
PixelColor
.
INT_WHITE_NO_ALPHA
;
WorldVertex
[]
vertices
=
new
[]
{
...
...
This diff is collapsed.
Click to expand it.
Source/Core/VisualModes/VisualSlope.cs
+
4
−
3
View file @
f606f3bd
...
...
@@ -28,7 +28,6 @@ namespace CodeImp.DoomBuilder.VisualModes
private
Matrix
position
;
#
endregion
#
region
==================
Properties
...
...
@@ -103,12 +102,14 @@ namespace CodeImp.DoomBuilder.VisualModes
public
void
SetPosition
(
Line2D
line
,
Plane
plane
)
{
Line3D
line3d
=
new
Line3D
(
new
Vector3D
(
line
.
v1
,
plane
.
GetZ
(
line
.
v1
)),
new
Vector3D
(
line
.
v2
,
plane
.
GetZ
(
line
.
v2
)));
// This vector is perpendicular to the line, with a 90° angle between it and the plane normal
Vector3D
perpendicularvector
=
Vector3D
.
CrossProduct
(
line
.
GetDelta
().
GetNormal
(),
plane
.
Normal
);
Vector3D
perpendicularvector
=
Vector3D
.
CrossProduct
(
line
3d
.
GetDelta
().
GetNormal
(),
plane
.
Normal
)
*
(-
1
)
;
// This vector is on the plane, with a 90° angle to the perpendicular vector (so effectively
// it's on the line, but in 3D
Vector3D
linevector
=
Vector3D
.
CrossProduct
(
plane
.
Normal
,
perpendicularvector
);
Vector3D
linevector
=
Vector3D
.
CrossProduct
(
plane
.
Normal
,
perpendicularvector
)
*
(-
1
)
;
Matrix
m
=
Matrix
.
Null
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment