Adjustable side ruler angle measuring tool

$46.95
Color:  30cm right angle
Pieces:  1pc
Quantity
Share the love
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Description

Description

DIY Supplies: Woodworking

Certification: CE

Bullet point:
1. The Woodworkers Edge Rule simplifies your life by wrapping around the edge of your stock and giving you an accurate scale on both sides.
2. Our latest precision ruler can provide unparalleled accuracy for your panel layout work. Just press the head to the desired angle, and then press the straight line.
3. Even the most skilled woodworker faces challenges in accurately angular placement on larger panel projects. You can try to extend the production line from a small protractor, but even a small error will make the production line extend farther, the greater the error.
4. It is the series of precisely machined indexing holes and the spring-loaded, tight-tolerance indexing pin that meshes with them. The pin snaps into place giving you the confidence to know it is spot-on accurate.
5. Even when you’re not working with angles, this is a lay out tool you’ll reach for on almost every project. The blade features the same exclusive “saw-tooth” design scribing notches found in our new Stainless Steel Precision Woodworking Squares. There’s a notch every sixteenth-inch all along the blade. Just drop your pencil in the notch and slide the head along the edge of your stock for a perfectly parallel line.

Description:
The best woodworking tools -Combination and Double Square The feature we think you’ll find most useful on these new squares is the laser-cut scribing guides cut every sixteenth-inch along the blade. The guides are just the right size to capture a pencil tip for highly accurate parallel scribing. But where’s the “zero point” for the scribing guides? How do you get a true starting point with a head that moves? Just depress the spring-loaded index pin and lock the head at any full inch…now your scribing guides are dialed in and ready for accurate parallel marking. For years one of our customers’ favorite features of our fixed-head squares has been the shoulder that keeps the square in position on the edge of your stock. We’ve added that to our adjustable squares, too. Just slide the head support out to keep the head of your square perfectly positioned without needing three hands. If it’s in the way, it just slides back into the head and doesn’t interfere with the alignment of the square in any way. The scales engraved on the blades of the squares have 16ths on one edge and 32nds on the other. All scales are laser engraved to a tolerance of .004" total accumulated error over the entire length of the blade. That’s about the thickness of a human hair spread over the 6-, 12- or 18-inch blade length. The stainless-steel blades go through a multi-step finishing process to give them a lustrous satin finish, and the deeply engraved graduations are crisp and dark and will never wear off. The XL Combination Square and Double Square have heads that are a full inch thick. With just under 1/2" beneath the blade, you’ll never worry about rounded-over edges changing your readings. The squares have a firm footing when standing vertical for cabinet checks or machinery adjustment, too. Machined from aircraft grade aluminum, the heads weigh less than the cast iron heads found on other brands of adjustable squares, even though ours are both thicker and longer.

Specification:
Size (approximately):
15*4cm, gram weight (approximately): 180g
30*4cm, gram weight (approximately): 250g
45*4cm, gram weight (approximately): 300g

Package Included:
1 * Woodworkers Edge Rule

Note:
Due to the different monitor and light effect,the actual color maybe a slight different from the picture color.
Please allow 1-2cm differs due to manual measurement.



Customer Reviews

Here are what our customers say.

Write a Review
Customer Reviews
Wow you reached the bottom
Newest
Most liked
Highest ratings
Lowest ratings
×
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.