active questions tagged wireframe - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T01:51:45Zhttp://stackoverflow.com/feeds/tag/wireframehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/88691/whats-the-best-app-to-draw-ui-wireframes-on-the-mac-and-why0what's the best app to draw UI wireframes on the mac? (And why)kch2008-09-17T23:30:27Z2009-12-02T22:17:32Z
<p>I want to draw user interfaces for web and desktop applications.</p>
<p>I need something less print-oriented than omnigraffle. think pixels!</p>
<p>Also, need good building blocks (aka stencils). Form elements, tableviews, etc.</p>
http://stackoverflow.com/questions/1800381/mockup-prototype-wireframe-tools0mockup, prototype, Wireframe ToolsRamji2009-11-25T22:32:00Z2009-11-25T22:49:28Z
<p>Tools which can be used to quickly show a mockup/Prototype or a wireframe of either a web-application, Softwares software/webscript etc. </p>
<p>I need free tools, or even webscripts to support mockup will be great</p>
http://stackoverflow.com/questions/1792217/what-website-wireframing-tools-are-available-online-or-self-hosted3What website wireframing tools are available online, or self-hosted?flyfishr642009-11-24T19:03:26Z2009-11-25T21:40:40Z
<p>I'm looking for an easy to use wireframing tool. I've heard of <a href="http://www.gliffy.com/wireframe-software/" rel="nofollow">gliffy</a>, are there any others?</p>
<p>Specifically, I'd like something that is </p>
<ul>
<li>Easy to use</li>
<li>Supports collaboration</li>
<li>export to html and css</li>
<li>lets me show the wireframes to the client. Allowing annotations would be a nice feature.</li>
<li>low cost, or free</li>
</ul>
http://stackoverflow.com/questions/156937/do-you-know-an-alternative-to-balsamiq-mockups15Do you know an alternative to balsamiq mockups?Thomaschaaf2008-10-01T10:04:03Z2009-11-08T10:16:06Z
<p>I am searching for something like <a href="http://www.balsamiq.com/products/mockups" rel="nofollow">http://www.balsamiq.com/products/mockups</a> . I like the program and would buy it if it were 20 bucks a licence.</p>
<p>Do you guys know something in the range from 0 to 20 bucks which can do what this thing can?</p>
<p>Give me some more answers there is no real answer here and I don't want to waste 100 rep points!</p>
http://stackoverflow.com/questions/408202/what-collaborative-wireframing-ui-mockup-tools-are-out-there2What *collaborative* wireframing / UI mockup tools are out there?taco2009-01-02T22:40:44Z2009-11-08T10:15:01Z
<p>I'm looking for something that applies the collaboration focus (one location/URL, always up-to-date, multi-person online read/write access anywhere) of google docs / google spreadsheets to wireframing. Bonus points if, like Google Docs, it needs only a browser yet also works offline. More bonus points if it supports automatic revisions. Even more bonus points if you can hand out login-less 'invitation' URLs like Flickr does, instead of forcing people into signing up for accounts or using their home accounts.</p>
<p>To start off, there's one called iPlotz, but it didn't enchant me -- ironically, mostly because of its akward UI, which can't hold a candle to omnigraffle (don't let that prevent you from giving it a try though).</p>
<p>And no, paper prototyping, wonderful as it is, does not qualify: it does not combine being instantly globally shareable & editable very well :-)</p>
http://stackoverflow.com/questions/55363/best-tools-for-creating-website-wireframes15Best tools for creating website wireframesAlison2008-09-10T21:31:50Z2009-11-04T22:07:36Z
<p>When creating a wireframe for a website, I always start with a <a href="http://v1.garrettdimon.com/resources/templates-stencils-for-visio-omnigraffle" rel="nofollow">Visio wireframe stencil from Garrett Dimon</a>. The stencil is amazing but it has been a few years since it has been updated and I'm looking for something new and exciting. </p>
<p>What wireframing tool(s) do you use, if any?</p>
http://stackoverflow.com/questions/1507210/wireframes-stencil-visio-visual-studio0Wireframes Stencil: visio, visual studio? gnomixa2009-10-02T00:34:50Z2009-11-04T05:58:58Z
<p>We need a simple method to put together wireframes. What is the simplest way to achieve this? Visio? Looks like we need to buy a stencil.</p>
<p>I also read somewhere online (on msdn) w/o no links provided that you can do it in Visual Studio. </p>
<p>I need the ability to portray the following controls:
- links
- text fields
- buttons
- datagrids
- tree </p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1667377/please-recommend-a-html-prototype-builder1Please Recommend a HTML Prototype BuilderCody2009-11-03T13:37:23Z2009-11-04T01:10:16Z
<p>I know some tools that can create wireframe for web site, but their output format is not HTML. I like HTML prototype since it can be interactive (via Javascript or VBScript) and I can share it on my web site too.</p>
<p>Any suggestions?</p>
http://stackoverflow.com/questions/1526898/how-do-i-reproduce-this-heart-shaped-mesh-in-matlab-1How do I reproduce this heart-shaped mesh in MATLAB?izzat2009-10-06T17:12:52Z2009-10-25T23:50:58Z
<p>I want to plot a heart shape in framework as shown in the following image (found on the website <a href="http://zedomax.com/blog/2008/09/03/i-love-meth-t-shirt/" rel="nofollow">zedomax.com/blog/2008/09/03/i-love-meth-t-shirt/</a>):</p>
<p><img src="http://zedomax.com/blog/wp-content/uploads/2008/09/i-love-math.jpg" alt="alt text" /></p>
<p>I have tried to make it by using this MATLAB program:</p>
<pre><code>n=100;
x=linspace(-3,3,n);
y=linspace(-3,3,n);
z=linspace(-3,3,n);
[X,Y,Z]=ndgrid(x,y,z);
F=((-(X.^2) .* (Z.^3) -(9/80).*(Y.^2).*(Z.^3)) + ((X.^2) + (9/4).* (Y.^2) + (Z.^2)-1).^3);
isosurface(F,0)
lighting phong
caxis
axis equal
colormap('flag');
view([55 34]);
</code></pre>
<p>But I didn't get the desired shape of framework as shown in
the figure.</p>
<p>I have identified the problem: to create a wireframe we
usually use the command mesh(). But this plotting facility
only allow us to plot a function of two variables such as
z=f(x,y). But my program makes use of three variables:
F(x,y,z).</p>
<p>How can I solve the problem?</p>
http://stackoverflow.com/questions/795679/what-is-needed-in-a-web-sites-wireframe2What is needed in a web site's wireframe?Dave2009-04-27T23:25:11Z2009-10-03T22:37:01Z
<p>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 give me an accurate bid, timetable, etc. for the development of the website? I have a clear picture of how I would like the site to work and the features that I would like to have included. </p>
http://stackoverflow.com/questions/1480982/how-to-render-primitives-in-wireframe-in-open-gl-es0How to render primitives in wireframe in Open Gl ESRich2009-09-26T10:56:55Z2009-09-26T18:05:56Z
<p>Hi,</p>
<p>I can see how to render wireframe primitives in open gl. By using glPolygonMode, however this call seems to be missing from Open GL ES.</p>
<p>Does anyone know how to render primitives in wireframe on Open GL ES?</p>
<p>Thanks
Rich</p>
http://stackoverflow.com/questions/1406202/plotting-a-wireframe-and-a-cloud-with-lattice-in-r2Plotting a wireframe AND a cloud with lattice in RJD Long2009-09-10T16:05:10Z2009-09-15T09:02:19Z
<p>I have a nice surface that represents nonlinear multi-part regression results on a regression with two independent variables. I would like to plot the regression predicted values as a nice 3D surface and then show the actual values as point that bounce around the surface. This would be the 3D version of plotting a regression line and showing the actuals as points around the line. I can't figure out how to do this with lattice. I'm happy to use another graphing library in R, but I don't know of others that do 3D plots. </p>
<p>Here's a simplified version of what I want to do:</p>
<pre><code>library(lattice)
#set up some simplified data
x <- seq(-.8, .8, .1)
y <- seq(-.8, .8, .1)
myGrid <- data.frame(expand.grid(x,y))
colnames(myGrid) <- c("x","y")
myGrid$z <- myGrid$x + myGrid$y
noise <- rnorm(length(myGrid$z),.3,.2)
myGrid$z2 <- myGrid$x + myGrid$y + noise
</code></pre>
<p>z is my smooth surface and z2 are my noisy points mostly slightly above the surface. So the surface looks like this:</p>
<pre><code>wireframe(myGrid$z ~ myGrid$x * myGrid$y, xlab="X", ylab="Y", zlab="Z")
</code></pre>
<p><img src="http://www.cerebralmastication.com/wp-content/uploads/2009/09/wireframe.png" alt="alt text" /></p>
<p>and the cloud of points looks like this:</p>
<pre><code>cloud(myGrid$z2 ~ myGrid$x * myGrid$y, xlab="X", ylab="Y", zlab="Z")
</code></pre>
<p><img src="http://www.cerebralmastication.com/wp-content/uploads/2009/09/cloud.png" alt="alt text" /></p>
<p>Is it possible to get both of these in one lattice panel?</p>
http://stackoverflow.com/questions/1102110/good-diagramming-software-for-uml-and-webdesign1Good diagramming software for UML and Webdesign?Thomas Jones2009-07-09T06:17:09Z2009-07-21T07:42:19Z
<p>I'm looking for a simple, easy to use and possibly free diagramming tool for both basic UML diagrams (mainly use case and activity diagrams) and webdesign wireframes. I don't need any complex UML <-> coding functionality (as provided in <strong>StarUML</strong> or <strong>Enterprise Architect</strong> and the likes). I have been using <strong>Visio</strong> for this and have also tried <strong>Smartdraw</strong>, but am looking for a cheaper and somewhat simpler alternative that also comes with a set of predefined stencils and templates.</p>
http://stackoverflow.com/questions/1134990/can-i-create-a-wireframe-for-all-purposes-sketch-communicate-review-document2Can I create a wireframe for all purposes (sketch, communicate, review, document...)?Fred2009-07-16T01:27:38Z2009-07-20T06:42:20Z
<p>I was requested to create wireframes for the product UI many times, since they are for different purposes. </p>
<p>We need some low-fidelity wireframes to communicate with our clients, which are non-technical people, so that they can focus on the solution itself and confirm the requirements. I used Balsamiq to do the job.</p>
<p>Then I was asked to create some interactive prototypes to collect feedback about the usability from users. I used Axure to do this.</p>
<p>Our product will be running on Mac, but Axure create wireframe in Windows style... The developers complain that they feel hard to map the hi-fi wireframe to the target UI. So I have to rework the hi-fi wireframes with Mac style and put them into design documents. I used Photoshop to do this.</p>
<p>Yeah I am so good that I have all these done, but I really feel tired. Those different wireframes are actually for one product, they have similar structures, but I have to create them time by time. I wish I could create a wireframe for all purposes, but I don't know how :-(</p>
<p>Any suggestion?</p>
http://stackoverflow.com/questions/1083566/is-there-a-software-that-can-make-wireframes-from-given-url-or-jpg0Is there a software that can make Wireframes from given url or jpg haim evgi2009-07-05T06:28:19Z2009-07-14T15:16:14Z
<p>Is it possible ?</p>
<p>Or I just imagine ?</p>
http://stackoverflow.com/questions/881045/sketching-font-alternative-to-comic-sans6"Sketching font" alternative to Comic Sans?Ola Eldøy2009-05-19T05:07:58Z2009-05-19T14:33:59Z
<p>In sketching (or mockup) tools such as <a href="http://www.balsamiq.com/" rel="nofollow">Balsamiq</a> and <a href="http://wireframesketcher.com/features.html" rel="nofollow">WireframeSketcher</a> Comic Sans is used to give that "sketchy", hand drawn look. My only problem is, I'm <em>so tired</em> of that font.</p>
<p>Any suggestions for alternatives?</p>
<p>Edit: WireframeSketcher does not default to the Comic Sans font, but it's the one used to show an example of a "sketchy" look.</p>
http://stackoverflow.com/questions/816060/c-d-line-drawing-package2C/D line drawing packageBCS2009-05-03T01:32:47Z2009-05-03T12:59:33Z
<p>I find my self in need of a line drawing package. I need to pop a window and draw lines and points. Text would be nice but I can live without it. Most importantly, I need something that is dirt simple to get running. I don't have time to dink around with libs (if I did have time I'd be willing but I'm already way behind as it is).</p>
<p>I'd prefer a <a href="http://www.digitalmars.com/d/1.0" rel="nofollow">D language</a> solution (Windows XP, D1.0, Phobos) but I might be able to use anything with C linkage and source. </p>
<p>I'd also be able to use an out of process solution as in: generate input file, call program.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/193603/simple-wireframe-format4Simple wireframe format?Draemon2008-10-11T02:12:38Z2008-11-18T19:01:56Z
<p>I'm looking for a simple file format to use for wireframe models. I am aware of VRML, u3D, etc, but these seem heavyweight for my needs. My criterea are:</p>
<ul>
<li>Must have a clear spec. Either open or very well established/documented.</li>
<li>I only need (want) simple models - vertices and edges. I don't want to handle faces or objects. If the format supports more, that's fine so long as I can ignore them.</li>
<li>End-user tools are not a requirement, but would be great. If not, it must be human readable (and editable for simple models).</li>
<li>It would be nice (but not necessary) to be able to annotate or at least label nodes.</li>
<li>It shouldn't matter what language I'm using, but probable options are Java/C++ & OpenGL</li>
</ul>
<p>Or am I just better writing vertices/edge lists to a text file and be done with it?</p>
http://stackoverflow.com/questions/268428/direct3d-wireframe-without-diagonals0Direct3D: Wireframe without DiagonalsAgnel Kurian2008-11-06T12:03:56Z2008-11-06T20:30:40Z
<p>When using wireframe fill mode in Direct3D, all rectangular faces display a diagonal running across due to the face being split in to two triangles. How do I eliminate this line? I also want to remove hidden surfaces. Wireframe mode doesn't do this.</p>
<p>I need to display a Direct3D model in isometric wireframe view. The rendered scene must display the boundaries of the model's faces but must exclude the diagonals. </p>
http://stackoverflow.com/questions/203781/is-wireframing-overplanning2Is Wireframing Overplanning?destrado082008-10-15T05:11:24Z2008-10-15T15:04:14Z
<p>37 Signal's <em>Getting Real</em> convinced me that wireframing and writing functional specification documents are a middleman steps unnecessary for building web applications and dynamic websites. </p>
<p>Is the overhead for these steps worth its weight? Is prototyping in HTML/CSS or even PhotoShop documents (so designers can work on them directly) a better option than using software like Visio? Personally, I am swaying towards the latter but am not sure.</p>