A website wireframe is a visual guide that represents the skeletal framework of a website. It depicts the page layout or arrangement of the website’s content, including interface elements and navigational systems, and how they work together.
Questions tagged [wireframe]
182 questions
1
vote
2 answers
How to add text to a lattice wireframe in R
Good Day All,
I want to add text floating in my wireframe plot and I am rather confused. I can certainly add the text as a title (e.g. main="Hello World") but I would rather not have my particular text in the title
Here is a sample wireframe:
…

user918967
- 2,049
- 4
- 28
- 43
1
vote
2 answers
wireframe overlay on Collada textures - three.js
When I use a Collada model with .jpg texture, three.js seems to overlay a wireframe mesh over the texture.
My question - is there a way to remove the wireframes?
an example is here;
http://movealpha.com/dae/test1.html
and this is the same example…

gts101
- 11
- 2
1
vote
2 answers
Wireframe drawing application used by Microsoft for the MVC roadmap
Can anyone tell me which application is used to draw the following image:
This image was taken from http://aspnet.codeplex.com/wikipage?title=ASP.NET%20MVC%204%20RoadMap

Fabian
- 13,603
- 6
- 31
- 53
1
vote
1 answer
Can the sketch look in Balsamiq be turned off?
We're looking into wireframing solutions and Balsamiq is a good candidate.
How do you turn off the sketchy look?

Oliver Ruehl
- 147
- 2
- 8
1
vote
6 answers
What is needed in a web site's wireframe?
I'm going to be going to be meeting with a number of programmers and custom software companies to get bids on creating a website for a company that I'm involved with. My question is this: What should I prepare for the programmers so that they can…
Dave
1
vote
2 answers
How does quads get rendered as lines in wireframe mode?
People have been telling me that "GPU renders triangles only".
But how do you explain GPU rendering a quad with 4 lines only in the wireframe mode, shouldnt it be rendering it with 5 lines since GPU cannot understand quads ?
On the other hand, how…

Rookie
- 3,753
- 5
- 33
- 33
1
vote
2 answers
OpenGL contour and creases render
I want to render the outlines + creases with opengl but it's not going as I wish. Can someone, please help me to solve this problem?
So far the outline it's rendered like this.
At this moment what I'm doing is:
Frist I do…

Razvan Sora
- 11
- 1
1
vote
0 answers
Switch wireframe to shade all
After a long search and unsuccessful attempts, I ask you to help me here. I need a python script that in maya will switch wireframe to shaded (key 5:smooth shade all ). Or just enable shaded. Thank you in advance.

MiruMiru
- 11
- 1
1
vote
1 answer
how to upload figma file(wireframe) on github?
I am making an app based on fitness. For that, I am making wireframe designs in Figma. Now I want to upload that Figma file on Github because I am working in a team of 4 members and we 4 can work together.

garima
- 11
- 1
- 2
1
vote
2 answers
How to hide invisible elements of the 3d drawing?
I'm trying to draw a 3d image that displays a ripple:
function myFunc(x, y) {
let zRipple =
Math.pow(2, -0.005 * (Math.abs(x) + Math.abs(y))) *
Math.cos(((x * x + y * y) * 2 * pi) / 180 / width) *
height;
return zRipple;
}
width…

Budda
- 18,015
- 33
- 124
- 206
1
vote
0 answers
Passing / packing attributes to web gl shader
I need help understanding how to pass an additional attribute in an existing system. I am using
nexus to render my mesh. Nexus sort of uses three.js, but down the line it actually does straight calls to web gl. I want to add a cool looking wireframe…

SpaceBear
- 832
- 3
- 8
- 22
1
vote
1 answer
Unity custom shader second pass not executing
I have a shader that should do two passes that will render the back one front once. See the shader code below:
Shader "Custom/Geometry/Wireframe"
{
Properties
{
_MainTex ("Texture", 2D) = "white" {}
[PowerSlider(3.0)]
…

FutureCake
- 2,614
- 3
- 27
- 70
1
vote
0 answers
How do I clip a wireframe plot in the z direction?
How do I clip/crop a wireframe plot at the maximum value of the z axis? For example:
library(lattice)
xy = expand.grid(x=1:5, y=1:5)
z = xy$x * xy$y
plot(wireframe(z ~ xy$x * xy$y, zlim=c(0,7), xlab="x", ylab="y", zlab="x*y",
…

JohnT
- 11
- 2
1
vote
1 answer
Is it possible to import html pages into Balsamiq?
Or is there a similar program that will allow this?
I want to be able to take the existing pages of my website, and turn it into wireframe form to experiment with new flows and systems.

MJay
- 11
- 2
1
vote
2 answers
Best Way for Web Workflow for Wireframe, to HTML to SPA React/Angular
I am new to front end web development. I work with a designer who makes mockups (no html) wire frames and the finished product is a React/Angular single page application.
I was thinking of this workflow.
1) Get the mockup wireframe
2) Recreate it in…

Mitch
- 31
- 3